Skip to content

Commit

Permalink
Update pipeline to use variables instead of secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
man90es committed Apr 16, 2024
1 parent e1264e2 commit df27696
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
- name: Build
run: pnpm build
env:
VUE_APP_API_ENDPOINT: ${{secrets.VUE_APP_API_ENDPOINT}}
VUE_APP_TITLE: ${{secrets.VUE_APP_TITLE}}
VUE_APP_LOCALE: ${{secrets.VUE_APP_LOCALE}}
VUE_APP_API_ENDPOINT: ${{vars.VUE_APP_API_ENDPOINT}}
VUE_APP_TITLE: ${{vars.VUE_APP_TITLE}}
VUE_APP_LOCALE: ${{vars.VUE_APP_LOCALE}}
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit df27696

Please sign in to comment.