From e8a5e91151b4809989e9c688507aa1df8bc62908 Mon Sep 17 00:00:00 2001 From: Reuben Morais Date: Tue, 14 Sep 2021 09:41:35 +0200 Subject: [PATCH] Fix syntax errors in tag scripts --- .github/workflows/build-and-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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