@@ -36,15 +36,18 @@ jobs:
36
36
- os : windows-2022
37
37
version : win_x86
38
38
pythonArch : ' x86'
39
- - os : macos-11
40
- version : mac
39
+ - os : macos-14
40
+ version : mac_apple
41
41
pythonArch : ' x64'
42
- - os : ubuntu-20.04
42
+ - os : macos-12
43
+ version : mac_intel
44
+ pythonArch : ' x64'
45
+ - os : ubuntu-22.04
43
46
version : ubuntu_x64
44
47
pythonArch : ' x64'
45
48
46
49
steps :
47
- - uses : actions/checkout@v3
50
+ - uses : actions/checkout@v4
48
51
49
52
- name : Classify files, prepare to be packaged
50
53
run : |
@@ -59,30 +62,30 @@ jobs:
59
62
cp ./README.md ./.pkg/public/
60
63
61
64
- name : Setup Python
62
- uses : actions/setup-python@v4
65
+ uses : actions/setup-python@v5
63
66
with :
64
- python-version : 3.8
67
+ python-version : 3.10
65
68
architecture : ${{ matrix.pythonArch }}
66
69
67
70
- name : Install Requirements
68
71
run : |
69
72
pip install -r ./requirements.txt
70
- pip install pyinstaller
73
+ pip install pyinstaller
71
74
72
75
- name : Run py-pkger.py
73
76
run : |
74
77
cd ./.pkg/
75
78
python ./py-pkger.py auto
76
79
77
80
- name : Compress to ZIP (win)
78
- if : ${{ matrix.version == 'win_x64' || matrix.version == 'win_x86' }}
81
+ if : ${{ contains( matrix.version, 'win') }}
79
82
run : |
80
83
cd ./.pkg/dist/
81
84
mv ./main.exe ./PixivBiu.exe
82
85
Compress-Archive * ../../${{ matrix.version }}.zip
83
86
84
87
- name : Compress to ZIP (unix-like)
85
- if : ${{ matrix.version == 'mac' || matrix.version == 'ubuntu_x64' }}
88
+ if : ${{ contains( matrix.version, 'mac') || contains( matrix.version, 'ubuntu') }}
86
89
run : |
87
90
cd ./.pkg/dist/
88
91
mv ./main ./PixivBiu
96
99
97
100
Release :
98
101
needs : [build-on-platform]
99
- runs-on : ubuntu-20 .04
102
+ runs-on : ubuntu-22 .04
100
103
steps :
101
104
- uses : actions/checkout@v3
102
105
@@ -109,13 +112,14 @@ jobs:
109
112
run : |
110
113
mv ./win_x64.zip ./PixivBiu_${{ github.event.inputs.releaseTag }}_win_x64.zip
111
114
mv ./win_x86.zip ./PixivBiu_${{ github.event.inputs.releaseTag }}_win_x86.zip
112
- mv ./mac.zip ./PixivBiu_${{ github.event.inputs.releaseTag }}_mac_intel.zip
115
+ mv ./mac_apple.zip ./PixivBiu_${{ github.event.inputs.releaseTag }}_mac_apple.zip
116
+ mv ./mac_intel.zip ./PixivBiu_${{ github.event.inputs.releaseTag }}_mac_intel.zip
113
117
mv ./ubuntu_x64.zip ./PixivBiu_${{ github.event.inputs.releaseTag }}_ubuntu_x64.zip
114
118
115
119
- name : Release and Done
116
120
uses : ncipollo/release-action@v1
117
121
with :
118
- artifacts : " PixivBiu_${{ github.event.inputs.releaseTag }}_win_x64.zip, PixivBiu_${{ github.event.inputs.releaseTag }}_win_x86.zip, PixivBiu_${{ github.event.inputs.releaseTag }}_ubuntu_x64 .zip, PixivBiu_${{ github.event.inputs.releaseTag }}_mac_intel.zip"
122
+ artifacts : " PixivBiu_${{ github.event.inputs.releaseTag }}_win_x64.zip, PixivBiu_${{ github.event.inputs.releaseTag }}_win_x86.zip, PixivBiu_${{ github.event.inputs.releaseTag }}_mac_apple .zip, PixivBiu_${{ github.event.inputs.releaseTag }}_mac_intel.zip, PixivBiu_${{ github.event.inputs.releaseTag }}_ubuntu_x64 .zip"
119
123
tag : ${{ github.event.inputs.releaseTag }}
120
124
name : ${{ github.event.inputs.releaseName }}
121
125
body : ${{ github.event.inputs.releaseBody }}
0 commit comments