Skip to content

Commit

Permalink
Fix Docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
qgerome committed Apr 12, 2022
1 parent 211b308 commit ce04e03
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/build_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
blsq/openhexa-frontend:latest
cache-from: type=registry,ref=user/app:latest
cache-to: type=inline
build-args:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
RELEASE: ${{ steps.version.outputs.number }}
build-args: |
"SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}"
"RELEASE=${{ steps.version.outputs.number }}"
- name: Build and push (manual)
if: ${{ github.event_name == 'workflow_dispatch' }}
Expand All @@ -58,8 +58,6 @@ jobs:
tags: |
blsq/openhexa-frontend:${{ github.event.inputs.tag }}
blsq/openhexa-frontend:latest
cache-from: type=registry,ref=user/app:latest
cache-to: type=inline
build-args: |
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
RELEASE=${{ steps.version.outputs.number }}
"SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}"
"RELEASE=${{ steps.version.outputs.number }}"

0 comments on commit ce04e03

Please sign in to comment.