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.
2 parents 96bb42f + 6b8a47f commit 6baddd2Copy full SHA for 6baddd2
.github/workflows/buildrelease.yml
@@ -9,6 +9,9 @@ jobs:
9
release:
10
runs-on: ubuntu-latest
11
12
+ env:
13
+ RELEASE_VERSION: ${{vars.RELEASE_VERSION}}
14
+
15
steps:
16
- name: Checkout code
17
uses: actions/checkout@v3
@@ -29,9 +32,9 @@ jobs:
29
32
uses: ncipollo/release-action@v1
30
33
with:
31
34
token: ${{ secrets.GH_TOKEN }}
- tag: ${{ variables.RELEASE_VERSION }}
- name: 'Release ${{ variables.RELEASE_VERSION }}'
35
+ tag: ${{ env.RELEASE_VERSION }} # Akses dengan 'env'
36
+ name: 'Release ${{ env.RELEASE_VERSION }}'
37
artifacts: |
- ./release/build/Vocallia-${{variables.RELEASE_VERSION}}.dmg
38
+ ./release/build/Vocallia-${{ env.RELEASE_VERSION }}.dmg
39
draft: false
40
prerelease: false
0 commit comments