diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 0fe296c..f950f33 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -37,7 +37,7 @@ jobs:
- name: Set tag version to output
id: set_current_tag_id
- run: echo "CURRENT_TAG=${{ steps.tag_version.outputs.new_tag }}" >> $GITHUB_OUTPUT
+ run: echo "CURRENT_TAG=${{ steps.tag_version.outputs.new_tag }}" >> $GITHUB_ENV
- name: Notify if failure
if: ${{ failure() }}
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml
index 207acba..926a6f8 100644
--- a/.github/workflows/release.yaml
+++ b/.github/workflows/release.yaml
@@ -79,7 +79,7 @@ jobs:
- name: Set Release URL
id: set_release_url
- run: echo "RELEASE_URL=${{ steps.create_release.outputs.upload_url }}" >> $GITHUB_OUTPUT
+ run: echo "RELEASE_URL=${{ steps.create_release.outputs.upload_url }}" >> $GITHUB_ENV
- name: Notify if failure
if: ${{ failure() }}
@@ -178,12 +178,12 @@ jobs:
WorkFlows: ActionsList
- Commit with tag: ${{ needs.prepare.outputs.CURRENT_TAG }}
+ Commit with tag: ${{ env.CURRENT_TAG }}
Repository: ${{ github.repository }}
Branch: ${{ github.ref }}
- Release URL: https://github.com/${{ github.repository }}/releases/tag/${{ needs.prepare.outputs.get_current_tag }}
+ Release URL: https://github.com/${{ github.repository }}/releases/tag/${{ env.CURRENT_TAG }}
See changes: https://github.com/${{ github.repository }}/commit/${{ github.sha }}
\ No newline at end of file