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 e7b378a commit c11caecCopy full SHA for c11caec
.github/workflows/python-app.yml
@@ -11,10 +11,9 @@ jobs:
11
strategy:
12
matrix:
13
os: [windows-latest, macos-latest]
14
- python-version: ['3.10', 'latest']
+ python-version: ['3.12']
15
16
env:
17
- PYTHON_VERSION: '3.10'
18
APP_NAME: 'bbtool'
19
20
steps:
@@ -24,7 +23,7 @@ jobs:
24
23
- name: Setup Python
25
uses: actions/setup-python@v4
26
with:
27
- python-version: 'latest'
+ python-version: ${{ matrix.python-version }}
28
29
- name: Install dependencies
30
run: |
@@ -38,7 +37,7 @@ jobs:
38
37
- name: Rename and move binary
39
40
mkdir -p release
41
- cp dist/${{ env.APP_NAME }}* release/
+ cp dist/${{ env.APP_NAME }}* release/ || cp dist/* release/
42
43
- name: Upload to GitHub Releases
44
uses: softprops/action-gh-release@v1
0 commit comments