Skip to content

Commit

Permalink
Merge pull request #488 from c0rydoras/fix/ci/build-args
Browse files Browse the repository at this point in the history
fix(ci): build args not passed to docker build
  • Loading branch information
trowik authored Dec 11, 2024
2 parents 56c6779 + 299b447 commit 2862c9d
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 2862c9d

Please sign in to comment.