Skip to content

Commit

Permalink
github-actions: use printf instead of echo
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel committed Jan 14, 2024
1 parent 948a82c commit 2100514
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
# Output the artifact name for later use
- name: Set output
id: set_output
run: echo "dist-artifacts-${{ matrix.os }}-${{ matrix.python }}" >> $GITHUB_ENV
run: printf "dist-artifacts-${{ matrix.os }}-${{ matrix.python }}" >> $GITHUB_ENV

build-linux:
strategy:
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
# Output the artifact name for later use
- name: Set output
id: set_output
run: echo "dist-artifacts-manylinux-${{ matrix.python }}" >> $GITHUB_ENV
run: printf "dist-artifacts-manylinux-${{ matrix.python }}" >> $GITHUB_ENV

deploy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2100514

Please sign in to comment.