Skip to content

Commit

Permalink
Fix dry-run. See #276
Browse files Browse the repository at this point in the history
  • Loading branch information
kwk committed Feb 27, 2024
1 parent d337087 commit b93fcd5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/testing-farm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
dry_run=0
if [[ "${{ github.event_name }}" == "workflow_dispatch" && ${{ github.event.inputs.dry-run }} ]]; then
echo "dry_run=1" >> $GITHUB_ENV
dry_run=1
fi
echo "dry_run=$dry_run" >> $GITHUB_ENV
Expand All @@ -165,8 +165,8 @@ jobs:
if: github.env.skip == 0 && github.env.dry_run != 1
uses: actions/upload-artifact@v4
with:
name: $artifact_name
path: /tmp/$artifact_name
name: ${{ github.env.artifact_name }}
path: /tmp/${{ github.env.artifact_name }}
if-no-files-found: warn

- name: "Run testing-farm"
Expand Down

0 comments on commit b93fcd5

Please sign in to comment.