Skip to content

Commit

Permalink
updated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Schmaetz committed Jun 12, 2024
1 parent 0d97d85 commit aff7a55
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/build_containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,15 @@ jobs:
id: build-base
run: |
make base
docker save -o base.tar cybertec-pg-container/base:$BASEOS-$BUILD

- name: printout Images
run: |
docker images
- name: Upload Containers
uses: actions/upload-artifact@v2
with:
name: docker-images
path: |
base.tar
Expand All @@ -55,6 +60,14 @@ jobs:
needs: build

steps:
- name: Download Containers
uses: actions/download-artifact@v2
with:
name: docker-images

- name: Load base image
run: docker load -i base.tar

- name: Tag and push container1
run: |
docker tag cybertec-pg-container/base:$BASEOS-$BUILD $IMAGEPRAEFIX/base:$BASEOS-$BUILD-$TYPE
Expand Down

0 comments on commit aff7a55

Please sign in to comment.