diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 124722c..56ee532 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -51,6 +51,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Download artifact + uses: actions/download-artifact@main + with: + name: image + path: /tmp + - name: Load image + run: | + docker load --input /tmp/image.tar + docker image ls -a - name: Run docker-compose uses: hoverkraft-tech/compose-action@v2.0.1 with: