chore(release): 10.601.80 [skip netlify] #1554
This file contains 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
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
test_base_sql: | |
runs-on: ubuntu-latest | |
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }} | |
name: "Test if base.sql is valid" | |
steps: | |
- name: "Checkout capgo" | |
uses: actions/checkout@v4 | |
- name: Install Supabase CLI | |
with: | |
version: 1.178.2 | |
uses: supabase/setup-cli@v1 | |
- name: Set env PROD | |
if: ${{ !contains(github.ref, '-alpha.') }} | |
run: echo "SUPABASE_DB_PASSWORD=${{ secrets.SUPABASE_DB_PASS }}" >> $GITHUB_ENV | |
- name: Set env ALPHA | |
if: ${{ contains(github.ref, '-alpha.') }} | |
run: echo "SUPABASE_DB_PASSWORD=${{ secrets.SUPABASE_DB_PASS_ALPHA }}" >> $GITHUB_ENV | |
- name: 🍜 Prepare Supabase PROD | |
run: supabase link --project-ref xvwzpoazmxkqosrdewyv | |
if: ${{ !contains(github.ref, '-alpha.') }} | |
env: | |
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_TOKEN }} | |
- name: 🍜 Prepare Supabase ALPHA | |
run: supabase link --project-ref aucsybvnhavogdmzwtcw | |
if: ${{ contains(github.ref, '-alpha.') }} | |
env: | |
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_TOKEN }} | |
- name: Run Supabase Start | |
run: ENV=local supabase start -x studio,imgproxy,inbucket,logflare --ignore-health-check |