Skip to content

Commit b541c20

Browse files
author
Piotr Stachaczynski
committed
fix: resolve CI pipeline failures for backend and frontend deploys
- Add Docker Buildx setup so GHA cache export works for backend image build - Point SWA deploy app_location at the pre-built Angular output directory (skip_app_build validates app_location directly, not output_location)
1 parent c7174d9 commit b541c20

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/deploy-backend.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v4
2323

24+
- name: Set up Docker Buildx
25+
uses: docker/setup-buildx-action@v3
26+
2427
- name: Log in to GHCR
2528
uses: docker/login-action@v3
2629
with:

.github/workflows/deploy-frontend.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,5 @@ jobs:
4040
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN }}
4141
repo_token: ${{ secrets.GITHUB_TOKEN }}
4242
action: upload
43-
app_location: frontend
44-
output_location: dist/frontend/browser
43+
app_location: frontend/dist/frontend/browser
4544
skip_app_build: true

0 commit comments

Comments
 (0)