Skip to content

Commit

Permalink
fix: deploy action 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien MAIRE authored and Julien MAIRE committed Jan 31, 2025
1 parent 1646f85 commit 62604aa
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,17 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Install dependencies
run: npm install

- name: Link Supabase
env:
SUPABASE_PROJECT_REF: ${{ vars.SUPABASE_PROJECT_REF }}
run: |
npx supabase link --project-ref $SUPABASE_PROJECT_REF
npx supabase link --project-ref ${{ vars.SUPABASE_PROJECT_REF }}
#Deploy supabase
- name: Run Docker Compose
Expand Down

0 comments on commit 62604aa

Please sign in to comment.