File tree Expand file tree Collapse file tree 3 files changed +13
-70
lines changed Expand file tree Collapse file tree 3 files changed +13
-70
lines changed Original file line number Diff line number Diff line change 1
-
2
1
name : Build and Test
3
2
4
3
inputs :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 18
18
19
19
jobs :
20
20
build-and-test :
21
- # runs-on: ${{ contains(matrix.platform, 'arm64') && 'ubuntu24-arm64-2-8' || 'ubuntu-latest' }}
22
- runs-on : ["${{ contains(matrix.platform, 'arm64') && 'ARM64' || 'X64' }}", "self-hosted"]
21
+ runs-on : ${{ contains(matrix.platform, 'arm64') && 'ubuntu24-arm64-2-8' || 'ubuntu-latest' }}
23
22
strategy :
24
23
fail-fast : false
25
24
matrix :
26
25
distribution :
27
26
- debian
28
- # - alpine
27
+ - alpine
29
28
platform :
30
29
- linux/amd64
31
- # - linux/i386
32
- # - linux/arm/v5
33
- # - linux/arm/v6
34
- # - linux/arm/v7
35
- # - linux/mips64le
36
- # - linux/ppc64le
37
- # - linux/s390x
30
+ - linux/i386
31
+ - linux/arm/v5
32
+ - linux/arm/v6
33
+ - linux/arm/v7
34
+ - linux/mips64le
35
+ - linux/ppc64le
36
+ - linux/s390x
38
37
- linux/arm64
39
- # - linux/riscv64
38
+ - linux/riscv64
40
39
exclude :
41
40
- distribution : alpine
42
41
platform : linux/mips64le
@@ -59,10 +58,10 @@ jobs:
59
58
with :
60
59
distribution : ${{ matrix.distribution }}
61
60
platform : ${{ matrix.platform }}
62
- registry_username : ${{ vars.REGISTRY_REPOSITORY == 'ghcr.io' && github.actor || vars.REGISTRY_USERNAME }}
63
- registry_password : ${{ vars.REGISTRY_REPOSITORY == 'ghcr.io' && secrets.GITHUB_TOKEN || secrets.REGISTRY_PASSWORD }}
61
+ registry_username : ${{ github.actor }}
62
+ registry_password : ${{ secrets.GITHUB_TOKEN }}
64
63
publish_image : ${{ vars.PUBLISH_IMAGE }}
65
- registry_repository : ${{ vars.REGISTRY_REPOSITORY == 'ghcr.io' && format('ghcr.io/{0}', github.repository) || vars.REGISTRY_REPOSITORY }}
64
+ registry_repository : ${{ format('ghcr.io/{0}', github.repository) }}
66
65
release_tag : ${{ inputs.release_tag }}
67
66
68
67
collect-image-urls :
You can’t perform that action at this time.
0 commit comments