Skip to content

Commit

Permalink
build: move env to the top
Browse files Browse the repository at this point in the history
  • Loading branch information
solidsnakedev committed Mar 5, 2024
1 parent 8226269 commit 3d4bb1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
jobs:
build:
runs-on: ubuntu-latest
env:
VITE_BLOCKFROST_KEY: ${{ secrets.VITE_BLOCKFROST_KEY }}
VITE_SEED: ${{ secrets.VITE_SEED }}
VITE_API_URL: ${{ secrets.VITE_API_URL }}
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down Expand Up @@ -34,7 +38,3 @@ jobs:
- run: pnpm run lint && pnpm run build
- run: pnpm run format-check
- run: pnpm test
env:
VITE_BLOCKFROST_KEY: ${{ secrets.VITE_BLOCKFROST_KEY }}
VITE_SEED: ${{ secrets.VITE_SEED }}
VITE_API_URL: ${{ secrets.VITE_API_URL }}

0 comments on commit 3d4bb1b

Please sign in to comment.