Skip to content

Commit

Permalink
sync json.
Browse files Browse the repository at this point in the history
  • Loading branch information
dojyorin committed Mar 12, 2024
1 parent 14cc961 commit b57d9d4
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.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
required: true
jobs:
push:
name: 'push: ${{matrix.distro}}'
name: 'push: ${{matrix.distro}}/${{matrix.arch}}'
runs-on: ubuntu-latest
strategy:
fail-fast: true
Expand All @@ -16,8 +16,8 @@ jobs:
- alpine
- distroless
arch:
- linux/amd64
- linux/arm64
- amd64
- arm64
env:
tag_f: dojyorin/deno:${{matrix.distro}}-${{inputs.deno_version}}
tag_d: dojyorin/deno:${{matrix.distro}}
Expand All @@ -40,7 +40,7 @@ jobs:
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}}
8 changes: 4 additions & 4 deletions .github/workflows/_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
required: true
jobs:
test:
name: 'test: ${{matrix.distro}}'
name: 'test: ${{matrix.distro}}/${{matrix.arch}}'
runs-on: ubuntu-latest
strategy:
fail-fast: true
Expand All @@ -16,8 +16,8 @@ jobs:
- alpine
- distroless
arch:
- linux/amd64
- linux/arm64
- amd64
- arm64
steps:
- name: clone repository
uses: actions/checkout@v4
Expand All @@ -29,7 +29,7 @@ jobs:
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 b57d9d4

Please sign in to comment.