Skip to content
Snippets Groups Projects
Commit 820cf3b9 authored by Tom Foster's avatar Tom Foster Committed by 🥺
Browse files

ci: extract OCI images before loading and before login

parent aaba7342
No related branches found
No related tags found
No related merge requests found
......@@ -296,6 +296,13 @@ jobs:
needs: build-oci
steps:
- name: Extract and load OCI Images
run: |
unzip oci-image-x86_64-unknown-linux-musl-jemalloc.zip
docker load -i oci-image-x86_64-unknown-linux-musl-jemalloc.tar.gz
unzip oci-image-aarch64-unknown-linux-musl-jemalloc.zip
docker load -i oci-image-aarch64-unknown-linux-musl-jemalloc.tar.gz
- name: Login to Docker Hub
uses: docker/login-action@v3
env:
......@@ -314,11 +321,6 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Load OCI Images
run: |
docker load -i oci-image-x86_64-unknown-linux-musl-jemalloc.tar.gz
docker load -i oci-image-aarch64-unknown-linux-musl-jemalloc.tar.gz
- name: Create and Push Manifest to Docker Hub
run: |
DOCKER_IMAGE_NAME="docker.io/${{ github.repository }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment