Fix syntax errors in tag scripts

This commit is contained in:
Reuben Morais 2021-09-14 09:41:35 +02:00
parent 810164d679
commit e8a5e91151

View File

@ -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