We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c67e59 commit 60d3ed5Copy full SHA for 60d3ed5
.github/workflows/hybridsql-docker.yml
@@ -93,6 +93,6 @@ jobs:
93
with:
94
context: docker
95
push: ${{ github.event_name == 'push' }}
96
- platforms: linux/amd64
+ platforms: linux/amd64,linux/arm64
97
tags: ${{ steps.meta.outputs.tags }}
98
labels: ${{ steps.meta.outputs.labels }}
docker/patch_yum_repo.sh
@@ -6,6 +6,6 @@ sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo
6
sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo
7
sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo
8
9
-if [[ "$ARCH" = "aarch64" ]]; then
+if [[ "$(arch)" = "aarch64" ]]; then
10
sed -i s/vault.centos.org\\/centos/vault.centos.org\\/altarch/g /etc/yum.repos.d/*.repo
11
fi
0 commit comments