Skip to content

Commit 3301639

Browse files
committed
Update CI
1 parent 950d408 commit 3301639

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Set tag version to output
3939
id: set_current_tag_id
40-
run: echo "CURRENT_TAG=${{ steps.tag_version.outputs.new_tag }}" >> $GITHUB_OUTPUT
40+
run: echo "CURRENT_TAG=${{ steps.tag_version.outputs.new_tag }}" >> $GITHUB_ENV
4141

4242
- name: Notify if failure
4343
if: ${{ failure() }}

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979

8080
- name: Set Release URL
8181
id: set_release_url
82-
run: echo "RELEASE_URL=${{ steps.create_release.outputs.upload_url }}" >> $GITHUB_OUTPUT
82+
run: echo "RELEASE_URL=${{ steps.create_release.outputs.upload_url }}" >> $GITHUB_ENV
8383

8484
- name: Notify if failure
8585
if: ${{ failure() }}
@@ -178,12 +178,12 @@ jobs:
178178
179179
<b>WorkFlows:</b> <a href="https://github.com/${{ github.repository }}/actions">ActionsList</a>
180180
181-
Commit with tag: ${{ needs.prepare.outputs.CURRENT_TAG }}
181+
Commit with tag: ${{ env.CURRENT_TAG }}
182182
183183
Repository: ${{ github.repository }}
184184
185185
Branch: ${{ github.ref }}
186186
187-
<b>Release URL:</b> https://github.com/${{ github.repository }}/releases/tag/${{ needs.prepare.outputs.get_current_tag }}
187+
<b>Release URL:</b> https://github.com/${{ github.repository }}/releases/tag/${{ env.CURRENT_TAG }}
188188
189189
See changes: https://github.com/${{ github.repository }}/commit/${{ github.sha }}

0 commit comments

Comments
 (0)