Create signup.html #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy API to Supabase | |
| on: | |
| push: | |
| branches: [ main ] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: supabase/setup-cli@v1 | |
| - name: Deploy | |
| # The --no-verify-jwt flag is the key to fixing the 401 error | |
| run: supabase functions deploy public-api --project-ref xcicvuqdoztxhidwdmlc --no-verify-jwt | |
| env: | |
| SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }} |