Skip to content

Commit

Permalink
more attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
PipeItToDevNull committed Dec 8, 2024
1 parent c6bb1d9 commit 035b518
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/bsod-api-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,12 @@ jobs:
} else {
$TAG = 'devel'
}
docker build -t $env:REGISTRY/$env:REPO/$env:IMAGE:$TAG -t $env:REGISTRY/$env:REPO/$env:IMAGE:$env:SHORT_SHA api/
docker push $env:REGISTRY/$env:REPO/$env:IMAGE:$TAG
docker push $env:REGISTRY/$env:REPO/$env:IMAGE:$env:SHORT_SHA
docker build `
-t ${{ env.REGISTRY }}/${{ env:REPO }}/${{ env:IMAGE }}:$TAG `
-t ${{ env:REGISTRY }}/${{ env:REPO }}/${{ env:IMAGE }}:${{ env:SHORT_SHA }} `
api/
docker push ${{ env:REGISTRY }}/${{ env:REPO }}/${{ env:IMAGE }}:$TAG
docker push ${{ env:REGISTRY }}/${{ env:REPO }}/${{ env:IMAGE }}:${{ env:SHORT_SHA }}
- name: Log out from the Container registry
run: docker logout ${{ env.REGISTRY }}
Expand Down

0 comments on commit 035b518

Please sign in to comment.