We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a5809f commit 886956fCopy full SHA for 886956f
2 files changed
.github/workflows/build.yaml
@@ -83,6 +83,7 @@ jobs:
83
run: |
84
python -m pip install --upgrade pip
85
pip install -r requirements.txt
86
+ echo "${{ env.CURRENT_TAG }}"
87
88
- name: Build with pyinstaller for ${{ matrix.TARGET }}
89
run: ${{ matrix.CMD_BUILD }}
.github/workflows/release.yaml
@@ -39,7 +39,7 @@ jobs:
39
40
- name: Set tag version to output
41
id: set_current_tag_id
42
- run: echo "CURRENT_TAG=${{ steps.tag_version.outputs.new_tag }}" >> $GITHUB_OUTPUT
+ run: echo "CURRENT_TAG=${{ steps.tag_version.outputs.new_tag }}" >> $GITHUB_ENV
43
44
- name: Notify if failure
45
if: ${{ failure() }}
0 commit comments