Skip to content

Commit d8791fc

Browse files
committed
upload artifact debug
1 parent b030359 commit d8791fc

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

.github/workflows/pyinstaller-package.yml

+28-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ name: Pyinstaller package
22

33
on:
44
push:
5-
branches: [ master, feature ]
6-
pull_request:
7-
branches: [ master ]
5+
tags:
6+
- 'v*'
87

98
jobs:
109
build:
@@ -40,3 +39,29 @@ jobs:
4039
spec: 'packaging/gui-tk.spec'
4140
upload_exe_with_name: 'isp-programmer-${{ matrix.os }}'
4241
python_ver: '3.9'
42+
43+
release:
44+
strategy:
45+
matrix:
46+
os: [ubuntu-22.04, ubuntu-24.04, windows-latest]
47+
48+
needs: build
49+
runs-on: ubuntu-latest
50+
permissions:
51+
contents: write # Needed to create a release
52+
steps:
53+
- name: Checkout repository
54+
uses: actions/checkout@v4
55+
56+
- name: Download artifact
57+
uses: actions/download-artifact@v4
58+
with:
59+
name: 'isp-programmer-${{ matrix.os }}'
60+
path: output
61+
62+
- name: Create GitHub Release
63+
id: create_release
64+
uses: softprops/action-gh-release@v2
65+
with:
66+
files: output/*
67+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.8,3.9,3.10,3.11,3.12,3.13]
18+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1919

2020
steps:
2121
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)