Skip to content

Commit

Permalink
Update pipeline.yml
Browse files Browse the repository at this point in the history
Fixed missing required env variables when building.
  • Loading branch information
xKhronoz authored Apr 9, 2024
1 parent b4297ca commit b47cd04
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
jobs:
test-build-node-js-app:
uses: ./.github/workflows/node-js-tests.yml
secrets:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_SERVICE_ROLE_KEY: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }}
test-build-python-package:
uses: ./.github/workflows/python-tests.yml
sync-to-deployment-fork:
Expand All @@ -21,4 +24,4 @@ jobs:
needs: [test-build-node-js-app, test-build-python-package]
uses: ./.github/workflows/sync-to-hugging-face-hub.yml
secrets:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
HF_TOKEN: ${{ secrets.HF_TOKEN }}

0 comments on commit b47cd04

Please sign in to comment.