We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ec59ac commit 70ec9baCopy full SHA for 70ec9ba
.github/workflows/build.yml
@@ -300,13 +300,13 @@ jobs:
300
301
- name: set variables
302
run: |
303
- echo "TAG_NAME=$(git rev-parse --short $GITHUB_SHA)" >> $GITHUB_ENV
+ echo "SHORT_SHA=$(git rev-parse --short $GITHUB_SHA)" >> $GITHUB_ENV
304
echo "VERSION=$(echo "${{ github.ref_name }}" | cut -d'-' -f2)" >> $GITHUB_ENV
305
306
- uses: softprops/action-gh-release@v1
307
with:
308
- name: ${{ env.VERSION }} (${{ env.TAG_NAME }})
309
- tag_name: ${{ env.TAG_NAME }}
+ name: ${{ env.VERSION }} (${{ env.SHORT_SHA }})
+ tag_name: ${{ env.VERSION }}-${{ env.SHORT_SHA }}
310
target_commitish: ${{ github.sha }}
311
files: tizen-*.zip
312
body: |
0 commit comments