Skip to content

Commit

Permalink
linux only.
Browse files Browse the repository at this point in the history
  • Loading branch information
dojyorin committed Mar 12, 2024
1 parent 43a9056 commit 14cc961
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/_push.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"jobs": {
"push": {
"name": "push: ${{matrix.distro}}",
"name": "push: ${{matrix.distro}}/${{matrix.arch}}",
"runs-on": "ubuntu-latest",
"strategy": {
"fail-fast": true,
Expand All @@ -22,8 +22,8 @@
"distroless"
],
"arch": [
"linux/amd64",
"linux/arm64"
"amd64",
"arm64"
]
}
},
Expand Down Expand Up @@ -54,7 +54,7 @@
"pull": true,
"no-cache": true,
"tags": "${{env.tag_f}},${{env.tag_d}}${{matrix.distro == 'distroless' && format(',{0},{1}', env.tag_v, env.tag_l) || ''}}",
"platforms": "${{matrix.arch}}",
"platforms": "linux/${{matrix.arch}}",
"context": "{{defaultContext}}:./src",
"file": "${{matrix.distro}}.dockerfile",
"build-args": "DENO_VERSION=${{inputs.deno_version}}"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"jobs": {
"test": {
"name": "test: ${{matrix.distro}}",
"name": "test: ${{matrix.distro}}/${{matrix.arch}}",
"runs-on": "ubuntu-latest",
"strategy": {
"fail-fast": true,
Expand All @@ -22,8 +22,8 @@
"distroless"
],
"arch": [
"linux/amd64",
"linux/arm64"
"amd64",
"arm64"
]
}
},
Expand All @@ -40,7 +40,7 @@
"pull": true,
"no-cache": true,
"tags": "${{github.sha}}",
"platforms": "${{matrix.arch}}",
"platforms": "linux/${{matrix.arch}}",
"context": "{{defaultContext}}:./src",
"file": "${{matrix.distro}}.dockerfile",
"build-args": "DENO_VERSION=${{inputs.deno_version}}"
Expand Down

0 comments on commit 14cc961

Please sign in to comment.