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 44f04a2 commit 326fb91Copy full SHA for 326fb91
.github/workflows/pyinstaller-build.yml
@@ -15,11 +15,10 @@ jobs:
15
16
steps:
17
- uses: actions/checkout@v2
18
- - name: 'Get Previous tag'
19
- id: previoustag
20
- uses: "WyriHaximus/github-action-get-previous-tag@v1"
21
- with:
22
- fallback: 0.0.0 # Optional fallback tag to use when no tag can be foun
+ - name: Get tag
+ id: get-tag
+ run: |
+ echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
23
- uses: actions/setup-python@v2
24
with:
25
python-version: 3.10.7
@@ -30,5 +29,5 @@ jobs:
30
29
#- run: ./dist/your-code/your-code
31
- uses: actions/upload-artifact@v3
32
33
- name: Tuttle-${{ steps.previoustag.outputs.tag }}-${{ matrix.os }}
+ name: Tuttle-${{ steps.get-tag.output }}-${{ matrix.os }}
34
path: dist/
0 commit comments