Skip to content

Commit 654c9ac

Browse files
committed
Updated publish-go-nightly-task.yml
1 parent 4618688 commit 654c9ac

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

workflow-templates/publish-go-nightly-task.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
create-nightly-artifacts:
2424
name: Build ${{ matrix.os.artifact-suffix }}
25-
runs-on: ubuntu-latest
25+
runs-on: ${{ matrix.os.runner }}
2626
permissions:
2727
contents: read
2828

@@ -31,22 +31,34 @@ jobs:
3131
os:
3232
- task: Windows_32bit
3333
artifact-suffix: Windows_32bit
34+
runner: ubuntu-latest
3435
- task: Windows_64bit
3536
artifact-suffix: Windows_64bit
37+
runner: ubuntu-latest
38+
- task: Windows_ARM64
39+
artifact-suffix: Windows_ARM64
40+
runner: ubuntu-24.04-arm
3641
- task: Linux_32bit
3742
artifact-suffix: Linux_32bit
43+
runner: ubuntu-latest
3844
- task: Linux_64bit
3945
artifact-suffix: Linux_64bit
46+
runner: ubuntu-latest
4047
- task: Linux_ARMv6
4148
artifact-suffix: Linux_ARMv6
49+
runner: ubuntu-latest
4250
- task: Linux_ARMv7
4351
artifact-suffix: Linux_ARMv7
52+
runner: ubuntu-latest
4453
- task: Linux_ARM64
4554
artifact-suffix: Linux_ARM64
55+
runner: ubuntu-24.04-arm
4656
- task: macOS_64bit
4757
artifact-suffix: macOS_64bit
58+
runner: ubuntu-latest
4859
- task: macOS_ARM64
4960
artifact-suffix: macOS_ARM64
61+
runner: ubuntu-24.04-arm
5062

5163
steps:
5264
- name: Checkout repository

0 commit comments

Comments
 (0)