From 21005146c1946bda6d3b5dbd27fec9875f038201 Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Sun, 14 Jan 2024 22:56:06 +0100 Subject: [PATCH] github-actions: use printf instead of echo --- .github/workflows/test-and-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 04ed0707..55b6aaf9 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -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: @@ -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