Skip to content

Commit 964b160

Browse files
committed
chore: update github actions
1 parent 23f20eb commit 964b160

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

.github/workflows/pkg.yml

+16-12
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,18 @@ jobs:
3636
- os: windows-2022
3737
version: win_x86
3838
pythonArch: 'x86'
39-
- os: macos-11
40-
version: mac
39+
- os: macos-14
40+
version: mac_apple
4141
pythonArch: 'x64'
42-
- os: ubuntu-20.04
42+
- os: macos-12
43+
version: mac_intel
44+
pythonArch: 'x64'
45+
- os: ubuntu-22.04
4346
version: ubuntu_x64
4447
pythonArch: 'x64'
4548

4649
steps:
47-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v4
4851

4952
- name: Classify files, prepare to be packaged
5053
run: |
@@ -59,30 +62,30 @@ jobs:
5962
cp ./README.md ./.pkg/public/
6063
6164
- name: Setup Python
62-
uses: actions/setup-python@v4
65+
uses: actions/setup-python@v5
6366
with:
64-
python-version: 3.8
67+
python-version: 3.10
6568
architecture: ${{ matrix.pythonArch }}
6669

6770
- name: Install Requirements
6871
run: |
6972
pip install -r ./requirements.txt
70-
pip install pyinstaller
73+
pip install pyinstaller
7174
7275
- name: Run py-pkger.py
7376
run: |
7477
cd ./.pkg/
7578
python ./py-pkger.py auto
7679
7780
- name: Compress to ZIP (win)
78-
if: ${{ matrix.version == 'win_x64' || matrix.version == 'win_x86' }}
81+
if: ${{ contains(matrix.version, 'win') }}
7982
run: |
8083
cd ./.pkg/dist/
8184
mv ./main.exe ./PixivBiu.exe
8285
Compress-Archive * ../../${{ matrix.version }}.zip
8386
8487
- 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') }}
8689
run: |
8790
cd ./.pkg/dist/
8891
mv ./main ./PixivBiu
@@ -96,7 +99,7 @@ jobs:
9699

97100
Release:
98101
needs: [build-on-platform]
99-
runs-on: ubuntu-20.04
102+
runs-on: ubuntu-22.04
100103
steps:
101104
- uses: actions/checkout@v3
102105

@@ -109,13 +112,14 @@ jobs:
109112
run: |
110113
mv ./win_x64.zip ./PixivBiu_${{ github.event.inputs.releaseTag }}_win_x64.zip
111114
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
113117
mv ./ubuntu_x64.zip ./PixivBiu_${{ github.event.inputs.releaseTag }}_ubuntu_x64.zip
114118
115119
- name: Release and Done
116120
uses: ncipollo/release-action@v1
117121
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"
119123
tag: ${{ github.event.inputs.releaseTag }}
120124
name: ${{ github.event.inputs.releaseName }}
121125
body: ${{ github.event.inputs.releaseBody }}

0 commit comments

Comments
 (0)