Skip to content

Commit

Permalink
fix: add env configuration in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Xecades committed Jan 28, 2024
1 parent 00ae796 commit 671bb25
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,19 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
env:
VITE_APP_ID: ${{ secrets.APP_ID }}
VITE_APP_KEY: ${{ secrets.APP_KEY }}
VITE_SERVER_URL: ${{ secrets.SERVER_URL }}

runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
Expand Down

0 comments on commit 671bb25

Please sign in to comment.