We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e4444f commit b45264aCopy full SHA for b45264a
.github/workflows/docker-export.yml
@@ -13,13 +13,14 @@ jobs:
13
steps:
14
- name: Install Docker CLI and Buildx
15
run: |
16
+ export DEBIAN_FRONTEND=noninteractive
17
apt update
18
apt install -y --no-install-recommends docker.io curl git ca-certificates
19
+ update-ca-certificates || true # run this manually, ignore failure if any
20
mkdir -p ~/.docker/cli-plugins
21
curl -sSL https://github.com/docker/buildx/releases/download/v0.11.2/buildx-v0.11.2.linux-arm64 -o ~/.docker/cli-plugins/docker-buildx
22
chmod +x ~/.docker/cli-plugins/docker-buildx
23
-
24
- name: Check out repository
25
uses: actions/checkout@v3
26
0 commit comments