Skip to content

Commit

Permalink
Fix bad action
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Nov 6, 2024
1 parent c49623b commit 77deeec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
# https://github.com/orgs/community/discussions/49245
GH_ACTION_REF: ${{ github.action_ref || github.ref_name }}
shell: bash
run: wget --no-verbose https://github.com/restatedev/sdk-test-suite/releases/download/v$GH_ACTION_REF/restate-sdk-test-suite.jar
run: wget --no-verbose https://github.com/restatedev/sdk-test-suite/releases/download/$GH_ACTION_REF/restate-sdk-test-suite.jar

- name: Set environment variables
if: ${{ inputs.envVars }}
Expand All @@ -47,7 +47,7 @@ runs:
env:
RESTATE_CONTAINER_IMAGE: ${{ inputs.restateContainerImage }}
shell: bash
run: java -jar restate-sdk-test-suite.jar run ${{ inputs.exclusionsFile != '' && format('--exclusions-file={0}', inputs.exclusionsFile) }} --report-dir=test-report ${{ inputs.serviceContainerImage }}
run: java -jar restate-sdk-test-suite.jar run ${{ inputs.exclusionsFile != '' && format('--exclusions-file={0}', inputs.exclusionsFile) || '' }} --report-dir=test-report ${{ inputs.serviceContainerImage }}

# Upload logs and publish test result
- uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 77deeec

Please sign in to comment.