Skip to content

Commit

Permalink
Fix build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
AzamatKomaev committed Oct 15, 2024
1 parent 3037008 commit 049dfd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
--bootstrap --use
- name: Build & Publish backend to Github Container registry
run: |
docker buildx build --platform linux/amd64,linux/arm64 ./backend
docker buildx build --platform linux/amd64,linux/arm64 ./backend \
--tag $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_backend:latest \
--tag $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_backend:$IMAGE_TAG
docker push $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_backend:latest
docker push $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_backend:$IMAGE_TAG
- name: Build & Publish frontend to Github Container registry
run: |
docker buildx build --platform linux/amd64,linux/arm64 ./frontend
docker buildx build --platform linux/amd64,linux/arm64 ./frontend \
--tag $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_frontend:latest \
--tag $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_frontend:$IMAGE_TAG
docker push $REGISTRY_URL/$REGISTRY_USERNAME/yet_another_calendar_frontend:latest
Expand Down

0 comments on commit 049dfd6

Please sign in to comment.