Skip to content

Commit

Permalink
remove setup-buildx in test
Browse files Browse the repository at this point in the history
  • Loading branch information
dojyorin committed Mar 18, 2024
1 parent 0ba7825 commit de6ec82
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 32 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/_push.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,10 @@
"uses": "actions/checkout@v4"
}, {
"name": "setup docker-qemu",
"uses": "docker/setup-qemu-action@v3",
"with": {
"platforms": "amd64,arm64"
}
"uses": "docker/setup-qemu-action@v3"
}, {
"name": "setup docker-buildx",
"uses": "docker/setup-buildx-action@v3",
"with": {
"cache-binary": false,
"cleanup": false
}
"uses": "docker/setup-buildx-action@v3"
}, {
"name": "login dockerhub",
"uses": "docker/login-action@v3",
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,8 @@ jobs:
uses: actions/checkout@v4
- name: setup docker-qemu
uses: docker/setup-qemu-action@v3
with:
platforms: amd64,arm64
- name: setup docker-buildx
uses: docker/setup-buildx-action@v3
with:
cache-binary: false
cleanup: false
- name: login dockerhub
uses: docker/login-action@v3
with:
Expand Down
12 changes: 1 addition & 11 deletions .github/workflows/_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,7 @@
"uses": "actions/checkout@v4"
}, {
"name": "setup docker-qemu",
"uses": "docker/setup-qemu-action@v3",
"with": {
"platforms": "amd64,arm64"
}
}, {
"name": "setup docker-buildx",
"uses": "docker/setup-buildx-action@v3",
"with": {
"cache-binary": false,
"cleanup": false
}
"uses": "docker/setup-qemu-action@v3"
}, {
"name": "build image",
"uses": "docker/build-push-action@v5",
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,6 @@ jobs:
uses: actions/checkout@v4
- name: setup docker-qemu
uses: docker/setup-qemu-action@v3
with:
platforms: amd64,arm64
- name: setup docker-buildx
uses: docker/setup-buildx-action@v3
with:
cache-binary: false
cleanup: false
- name: build image
uses: docker/build-push-action@v5
with:
Expand Down

0 comments on commit de6ec82

Please sign in to comment.