Skip to content

Commit

Permalink
Adding the EMBEDLY_KEY to the populated envvars for building the rele…
Browse files Browse the repository at this point in the history
…ase static assets. (#987)
  • Loading branch information
Ardiea authored May 31, 2024
1 parent 017cc45 commit c182c60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: yarn install --immutable

- name: Build frontend
run: NODE_ENV=production yarn build
run: EMBEDLY_KEY=${{ secrets.EMBEDLY_KEY_PROD }} NODE_ENV=production yarn build

- name: Upload frontend build to s3
uses: jakejarvis/s3-sync-action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: yarn install --immutable

- name: Build frontend
run: NODE_ENV=production yarn build
run: EMBEDLY_KEY=${{ secrets.EMBEDLY_KEY_RC }} NODE_ENV=production yarn build

- name: Upload frontend build to s3
uses: jakejarvis/s3-sync-action@master
Expand Down

0 comments on commit c182c60

Please sign in to comment.