diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 31428a71..6f48fdb6 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -855,7 +855,7 @@ jobs: - name: Get tag name id: get-tag run: | - tag=$(echo "${{ github.ref }}" | sed -e 's|^refs/tags/||)' + tag=$(echo "${{ github.ref }}" | sed -e 's|^refs/tags/||') echo "::set-output name=tag::$tag" - name: Upload artifacts to GitHub release uses: ./.github/actions/upload-release-asset @@ -1021,7 +1021,7 @@ jobs: - name: Get tag name id: get-tag run: | - tag=$(echo "${{ github.ref }}" | sed -e 's|^refs/tags/||)' + tag=$(echo "${{ github.ref }}" | sed -e 's|^refs/tags/||') echo "::set-output name=tag::$tag" - name: Upload artifacts to GitHub release uses: ./.github/actions/upload-release-asset @@ -1067,7 +1067,7 @@ jobs: - name: Get tag name id: get-tag run: | - tag=$(echo "${{ github.ref }}" | sed -e 's|^refs/tags/||)' + tag=$(echo "${{ github.ref }}" | sed -e 's|^refs/tags/||') echo "::set-output name=tag::$tag" - name: Upload artifacts to GitHub release uses: ./.github/actions/upload-release-asset