Skip to content

Commit

Permalink
[ci] Change the release tag format (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
swift-kim authored May 17, 2022
1 parent 3ec59ac commit 70ec9ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,13 +300,13 @@ jobs:
- name: set variables
run: |
echo "TAG_NAME=$(git rev-parse --short $GITHUB_SHA)" >> $GITHUB_ENV
echo "SHORT_SHA=$(git rev-parse --short $GITHUB_SHA)" >> $GITHUB_ENV
echo "VERSION=$(echo "${{ github.ref_name }}" | cut -d'-' -f2)" >> $GITHUB_ENV
- uses: softprops/action-gh-release@v1
with:
name: ${{ env.VERSION }} (${{ env.TAG_NAME }})
tag_name: ${{ env.TAG_NAME }}
name: ${{ env.VERSION }} (${{ env.SHORT_SHA }})
tag_name: ${{ env.VERSION }}-${{ env.SHORT_SHA }}
target_commitish: ${{ github.sha }}
files: tizen-*.zip
body: |
Expand Down

0 comments on commit 70ec9ba

Please sign in to comment.