Skip to content

Update pipeline.yml #22

Update pipeline.yml

Update pipeline.yml #22

Workflow file for this run

name: Pipeline
on:
push:
branches: [main]
# to run this workflow manually from the Actions tab
workflow_dispatch:
# Test, Build and Deploy the app
jobs:
test-build-node-js-app:
uses: ./.github/workflows/node-js-tests.yml
secrets:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}

Check failure on line 14 in .github/workflows/pipeline.yml

View workflow run for this annotation

GitHub Actions / Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/pipeline.yml (Line: 14, Col: 23): Invalid secret, SUPABASE_URL is not defined in the referenced workflow. .github/workflows/pipeline.yml (Line: 15, Col: 36): Invalid secret, SUPABASE_SERVICE_ROLE_KEY is not defined in the referenced workflow.
SUPABASE_SERVICE_ROLE_KEY: ${{ secrets.SUPABASE_SERVICE_ROLE_KEY }}
test-build-python-package:
uses: ./.github/workflows/python-tests.yml
sync-to-deployment-fork:
needs: [test-build-node-js-app, test-build-python-package]
uses: ./.github/workflows/sync-to-deployment-fork.yml
secrets:
PAT: ${{ secrets.PAT }}
sync-to-hugging-face-hub-spaces:
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 }}