Skip to content

Commit

Permalink
ci(build): pass role name args to build
Browse files Browse the repository at this point in the history
  • Loading branch information
velrest committed Aug 25, 2021
1 parent 9d57a15 commit f5117d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release-container-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ jobs:
with:
context: ./frontend
file: ./frontend/Dockerfile
build-args: AUTH_ROLE_ADMIN=${{ secrets.AUTH_ROLE_ADMIN }}, AUTH_ROLE_EMPLOYEE=${{ secrets.AUTH_ROLE_EMPLOYEE }}
build-args: |
AUTH_ROLE_ADMIN=${{ secrets.AUTH_ROLE_ADMIN }}
AUTH_ROLE_EMPLOYEE=${{ secrets.AUTH_ROLE_EMPLOYEE }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.prep.outputs.tags }}
labels: |
Expand Down

0 comments on commit f5117d5

Please sign in to comment.