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 815873b commit 200f1deCopy full SHA for 200f1de
.github/workflows/pyinstaller-build.yml
@@ -15,6 +15,11 @@ 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
23
- uses: actions/setup-python@v2
24
with:
25
python-version: 3.10.7
@@ -26,5 +31,5 @@ jobs:
26
31
#- run: ./dist/your-code/your-code
27
32
- uses: actions/upload-artifact@v3
28
33
29
- name: Tuttle-${{ matrix.os }}
34
+ name: Tuttle-${{ steps.previoustag.outputs.tag }}-${{ matrix.os }}
30
35
path: dist/
0 commit comments