Skip to content

Commit 6e25863

Browse files
committed
Update pkg.yml
1 parent c637976 commit 6e25863

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed

.github/workflows/pkg.yml

+11-16
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,13 @@ on:
1111
workflow_dispatch:
1212
inputs:
1313
releaseTag:
14-
description: 'Release Tag'
14+
description: "Release Tag"
1515
required: true
16-
default: 'v2.x.x[a-z]'
16+
default: "v2.x.x[a-z]"
1717
releaseName:
18-
description: 'Release Name'
18+
description: "Release Name"
1919
required: true
20-
default: '2.x.x'
21-
releaseBody:
22-
description: 'Release Body'
23-
required: true
24-
default: 'Enjoy.'
20+
default: "2.x.x"
2521

2622
jobs:
2723
build-on-platform:
@@ -32,19 +28,19 @@ jobs:
3228
include:
3329
- os: windows-2022
3430
version: win_x64
35-
pythonArch: 'x64'
31+
pythonArch: x64
3632
- os: windows-2022
3733
version: win_x86
38-
pythonArch: 'x86'
34+
pythonArch: x86
3935
- os: macos-14
4036
version: mac_apple
41-
pythonArch: 'x64'
37+
pythonArch: arm64
4238
- os: macos-12
4339
version: mac_intel
44-
pythonArch: 'x64'
40+
pythonArch: x64
4541
- os: ubuntu-20.04
4642
version: ubuntu_x64
47-
pythonArch: 'x64'
43+
pythonArch: x64
4844

4945
steps:
5046
- uses: actions/checkout@v4
@@ -64,8 +60,8 @@ jobs:
6460
- name: Setup Python
6561
uses: actions/setup-python@v5
6662
with:
67-
python-version: '3.12'
68-
# architecture: ${{ matrix.pythonArch }}
63+
python-version: "3.12"
64+
architecture: ${{ matrix.pythonArch }}
6965

7066
- name: Install Requirements
7167
run: |
@@ -122,5 +118,4 @@ jobs:
122118
# 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"
123119
# tag: ${{ github.event.inputs.releaseTag }}
124120
# name: ${{ github.event.inputs.releaseName }}
125-
# body: ${{ github.event.inputs.releaseBody }}
126121
# token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)