Skip to content

Commit

Permalink
CI: Use a short reference name instead of a qualified name
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriSizov committed Jun 3, 2024
1 parent 685e96a commit 9956eab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release-tagged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Make GitHub Release
uses: ./.github/actions/make-release
with:
release-version: ${{ github.ref }}
release-version: ${{ github.ref_name }}

# Lastly, use the artifacts to prepare the example project and publish the build.

Expand All @@ -66,7 +66,7 @@ jobs:
needs: [ release-all ]
uses: ./.github/workflows/extension-publish-all.yml
with:
release-version: ${{ github.ref }}
release-version: ${{ github.ref_name }}

export-example-project:
name: Export the example project for target platforms
Expand All @@ -78,4 +78,4 @@ jobs:
needs: [ export-example-project ]
uses: ./.github/workflows/example-publish-project.yml
with:
release-version: ${{ github.ref }}
release-version: ${{ github.ref_name }}

0 comments on commit 9956eab

Please sign in to comment.