Skip to content

Commit

Permalink
Test different ways to get ref_name
Browse files Browse the repository at this point in the history
  • Loading branch information
agarciadom authored May 23, 2024
1 parent 404ad3e commit 32a3dd3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
Compress-Archive -Path build/native/nativeCompile/ecore2Emfatic* -DestinationPath ${{ matrix.os }}-ecore2Emfatic.zip
gh release upload $GITHUB_REF_NAME ${{ matrix.os }}-ecore2Emfatic.zip
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
echo "Tag name from github.ref_name: ${{ github.ref_name }}"
echo gh release upload ${{ github.ref_name }} ${{ matrix.os }}-ecore2Emfatic.zip
gh release upload ${{ github.ref_name }} ${{ matrix.os }}-ecore2Emfatic.zip

0 comments on commit 32a3dd3

Please sign in to comment.