diff options
| author | seth <[email protected]> | 2023-11-15 19:20:38 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-15 19:20:38 -0500 |
| commit | 8fee2d4f87232b51c308213e4a1d83f253c75383 (patch) | |
| tree | 86790e229fce969f9b35bfeeda55baed2ea4e760 | |
| parent | 9f1e10b68baf2cf609c1065e8130353d798bcc62 (diff) | |
actions: load docker image from correct directory
| -rw-r--r-- | .github/workflows/docker.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 21b326d..c1def5d 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -77,7 +77,7 @@ jobs: architectures=("amd64" "arm64v8") for arch in "${architectures[@]}"; do - docker load < image/container-"$arch" + docker load < images/container-"$arch"/*.tar.gz docker tag ${{ env.IMAGE_NAME }}:latest-"$arch" ${{ env.TAG }}-"$arch" docker push ${{ env.TAG }}-"$arch" done |
