Skip to content

Commit

Permalink
fix: get built docker artifacts in ghcr upload job
Browse files Browse the repository at this point in the history
  • Loading branch information
rti committed Nov 2, 2023
1 parent b6c94d9 commit 7c05178
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,19 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Get built Docker images
uses: actions/download-artifact@v3
with:
name: DockerImages
path: artifacts/

- name: Load docker images
shell: bash
run: |
for file in artifacts/*.docker.tar.gz; do
docker load -i "$file"
done
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
Expand Down

0 comments on commit 7c05178

Please sign in to comment.