feat/cicd #22

Merged
kenobi merged 32 commits from feat/cicd into master 2023-06-14 22:43:37 +02:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 7e67d1fed9 - Show all commits

View File

@ -25,4 +25,4 @@ jobs:
- name: Build Container
run: ./dockerbuild.sh "${{ env.REGISTRY }}/${{ env.USER }}/${{ IMAGE_NAME }}:latest"
- name: Push Container
run: docker push "${{ env.REGISTRY }}/${{ env.USER }}/${{ IMAGE_NAME }}:latest"
run: ./dockerpush.sh "${{ env.REGISTRY }}/${{ env.USER }}/${{ IMAGE_NAME }}:latest"

View File

@ -1,2 +1,3 @@
#!/bin/bash
echo $1
docker build --tag $1 .