Skip to content

Commit

Permalink
fix(ci): build args not passed to docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
c0rydoras committed Dec 11, 2024
1 parent 56c6779 commit 299b447
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,16 @@ jobs:
- name: Build and Push Docker Image
uses: docker/build-push-action@v6

with:
context: ./frontend/
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: |
${{ steps.meta.outputs.labels }}
build-args: |
AUTH_ROLE_ADMIN=${{ secrets.AUTH_ROLE_ADMIN }}
AUTH_ROLE_EMPLOYEE=${{ secrets.AUTH_ROLE_EMPLOYEE }}
AUTH_ROLE_CUSTOMER=${{ secrets.AUTH_ROLE_CUSTOMER }}
TIMED_STAGING_HOST=${{ secrets.TIMED_STAGING_HOST }}
TIMED_PROD_HOST=${{ secrets.TIMED_PROD_HOST }}

0 comments on commit 299b447

Please sign in to comment.