From 32a3dd3aaf2961be23b336575952c594da6522b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Garc=C3=ADa-Dom=C3=ADnguez?= Date: Thu, 23 May 2024 08:15:46 +0100 Subject: [PATCH] Test different ways to get ref_name --- .github/workflows/release-native.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-native.yml b/.github/workflows/release-native.yml index b338388..8bb7f12 100644 --- a/.github/workflows/release-native.yml +++ b/.github/workflows/release-native.yml @@ -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