Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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() }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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() }}
Expand Down Expand Up @@ -178,12 +178,12 @@ jobs:

<b>WorkFlows:</b> <a href="https://github.com/${{ github.repository }}/actions">ActionsList</a>

Commit with tag: ${{ needs.prepare.outputs.CURRENT_TAG }}
Commit with tag: ${{ env.CURRENT_TAG }}

Repository: ${{ github.repository }}

Branch: ${{ github.ref }}

<b>Release URL:</b> https://github.com/${{ github.repository }}/releases/tag/${{ needs.prepare.outputs.get_current_tag }}
<b>Release URL:</b> https://github.com/${{ github.repository }}/releases/tag/${{ env.CURRENT_TAG }}

See changes: https://github.com/${{ github.repository }}/commit/${{ github.sha }}