File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -84,10 +84,17 @@ jobs:
84
84
username : ${{ github.actor }}
85
85
password : ${{ secrets.GITHUB_TOKEN }}
86
86
87
+ - name : Set up QEMU
88
+ uses : docker/setup-qemu-action@v3
89
+
90
+ - name : Set up Docker Buildx
91
+ uses : docker/setup-buildx-action@v3
92
+
87
93
- name : Build and push
88
- uses : docker/build-push-action@v5
94
+ uses : docker/build-push-action@v6
89
95
with :
90
96
context : .
97
+ platforms : linux/amd64,linux/arm64
91
98
push : true
92
99
tags : ${{ steps.meta.outputs.tags }}
93
100
labels : ${{ steps.meta.outputs.labels }}
Original file line number Diff line number Diff line change 57
57
58
58
VERSION=$(git describe --tags --abbrev=0 | sed 's/^v//')
59
59
sed -E "s/^appVersion:.+$/appVersion: '$VERSION'/" -i install/kubernetes/github-actions-cache-server/Chart.yaml
60
+ git stage install/kubernetes/github-actions-cache-server/Chart.yaml
60
61
git commit --amend --no-edit
61
62
62
63
echo "RELEASE_REF=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
@@ -116,10 +117,17 @@ jobs:
116
117
username : ${{ github.actor }}
117
118
password : ${{ secrets.GITHUB_TOKEN }}
118
119
120
+ - name : Set up QEMU
121
+ uses : docker/setup-qemu-action@v3
122
+
123
+ - name : Set up Docker Buildx
124
+ uses : docker/setup-buildx-action@v3
125
+
119
126
- name : Build and push
120
- uses : docker/build-push-action@v5
127
+ uses : docker/build-push-action@v6
121
128
with :
122
129
context : .
123
130
push : true
131
+ platforms : linux/amd64,linux/arm64
124
132
tags : ${{ steps.meta.outputs.tags }}
125
133
labels : ${{ steps.meta.outputs.labels }}
You can’t perform that action at this time.
0 commit comments