Skip to content

Commit 8ca0ee2

Browse files
committed
disable armv7 build
1 parent 334ec8c commit 8ca0ee2

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/build-docker.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ jobs:
3232
size: xlarge
3333
cpu: amd64
3434
tag: amd64
35-
- os: arm-3.0
36-
size: xlarge
37-
cpu: arm/v7
38-
tag: armv7
35+
# - os: arm-3.0
36+
# size: xlarge
37+
# cpu: arm/v7
38+
# tag: armv7
3939

4040
permissions:
4141
contents: read
@@ -122,7 +122,8 @@ jobs:
122122
for tag in ${tags}
123123
do
124124
docker manifest rm ${tag} || true
125-
docker manifest create ${tag} ${{ env.GHCR_REPO }}:${{ github.sha }}-amd64 ${{ env.GHCR_REPO }}:${{ github.sha }}-arm64 ${{ env.GHCR_REPO }}:${{ github.sha }}-armv7
125+
# docker manifest create ${tag} ${{ env.GHCR_REPO }}:${{ github.sha }}-amd64 ${{ env.GHCR_REPO }}:${{ github.sha }}-arm64 ${{ env.GHCR_REPO }}:${{ github.sha }}-armv7
126+
docker manifest create ${tag} ${{ env.GHCR_REPO }}:${{ github.sha }}-amd64 ${{ env.GHCR_REPO }}:${{ github.sha }}-arm64
126127
docker manifest push ${tag}
127128
done
128129

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ jobs:
1818
uses: ./.github/workflows/build-docker.yml
1919
with:
2020
tags: |
21-
type=raw,value=latest
2221
type=semver,pattern={{version}}
2322
type=semver,pattern={{major}}.{{minor}}
2423
type=sha
24+
# Explicitly disable latest tag. It will be added otherwise.
25+
flavor: |
26+
latest=false
2527
2628
build-docker-prerelease:
2729
# Only build tags with -, like v1.0.0-alpha

0 commit comments

Comments
 (0)