Skip to content

Commit

Permalink
Fix image name
Browse files Browse the repository at this point in the history
  • Loading branch information
sanders41 committed Aug 7, 2023
1 parent 76ae710 commit b04c2a4
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: docker/build-push-action@v4
with:
context: ./frontend
tags: backend:dev
tags: frontend:dev
outputs: type=docker,dest=/tmp/frontend.tar
push: false
- name: Upload artifact
Expand Down Expand Up @@ -157,18 +157,16 @@ jobs:
name: backend
path: /tmp
- name: Load Backend Image
run: |
docker load --input /tmp/backend.tar
docker image ls -a
run: docker load --input /tmp/backend.tar
- name: Download frontend
uses: actions/download-artifact@v3
with:
name: frontend
path: /tmp
- name: Load Frontend Image
run: |
docker load --input /tmp/frontend.tar
docker image ls -a
run: docker load --input /tmp/frontend.tar
- name: List images
run: docker image ls -a
- name: Install just
uses: taiki-e/install-action@just
- name: Setup node
Expand Down

0 comments on commit b04c2a4

Please sign in to comment.