From f333a0c24326ed0ca5e4bb109be541feefa9be44 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Sat, 4 Mar 2023 17:35:18 -0800 Subject: [PATCH] Update run-test-manually.yml --- .github/workflows/run-test-manually.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-test-manually.yml b/.github/workflows/run-test-manually.yml index b230887e88..9cd2155e7d 100644 --- a/.github/workflows/run-test-manually.yml +++ b/.github/workflows/run-test-manually.yml @@ -3,10 +3,15 @@ name: Run Tests Manually on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: - + inputs: + version: + description: "Version" + required: true + default: "canary" + type: string jobs: linux-test: - name: Tests ${{matrix.tag}} + name: Tests ${{matrix.tag}} ${{github.event.inputs.version}} runs-on: ubuntu-latest timeout-minutes: 10 strategy: @@ -24,7 +29,7 @@ jobs: - id: install name: Install run: | - npm install @oven/bun-${{matrix.tag}}@canary + npm install @oven/bun-${{matrix.tag}}@${{github.event.inputs.version}} chmod +x node_modules/@oven/bun-${{matrix.tag}}/bin/bun sudo cp node_modules/@oven/bun-${{matrix.tag}}/bin/bun /usr/bin/bun - id: test