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.
1 parent 326fb91 commit 59cd6deCopy full SHA for 59cd6de
.github/workflows/pyinstaller-build.yml
@@ -18,7 +18,7 @@ jobs:
18
- name: Get tag
19
id: get-tag
20
run: |
21
- echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
+ echo "::set-output name=tag::$(git describe --tags --abbrev=0)"
22
- uses: actions/setup-python@v2
23
with:
24
python-version: 3.10.7
@@ -29,5 +29,5 @@ jobs:
29
#- run: ./dist/your-code/your-code
30
- uses: actions/upload-artifact@v3
31
32
- name: Tuttle-${{ steps.get-tag.output }}-${{ matrix.os }}
+ name: Tuttle-${{ steps.get-tag.outputs.tag }}-${{ matrix.os }}
33
path: dist/
0 commit comments