Skip to content

Commit

Permalink
Merge pull request #267 from AppQuality/develop
Browse files Browse the repository at this point in the history
ci: Add authtoken to release
  • Loading branch information
d-beezee authored Dec 11, 2023
2 parents 20c0c89 + bb35b25 commit 67355c9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ jobs:
IMAGE_TAG: ${{ steps.extract_tag.outputs.tag }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
DOCKER_BUILDKIT=1 docker build --build-arg NPM_TOKEN=$NPM_TOKEN -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
DOCKER_BUILDKIT=1 docker build \
--build-arg NPM_TOKEN=$NPM_TOKEN \
--build-arg SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} \
-t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
release-to-preprod:
Expand Down

0 comments on commit 67355c9

Please sign in to comment.