Skip to content

fix issue with dagger connect #30

fix issue with dagger connect

fix issue with dagger connect #30

Workflow file for this run

# Do not edit this file directly. It is generated by https://deno.land/x/fluent_github_actions
name: Zenith Example
on:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Dagger Zenith
run: |
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.9.7 sh
sudo mv bin/dagger /usr/local/bin
dagger version
- name: Setup Supabase Token
run: |
sed -i "s|SUPABASE_ACCESS_TOKEN|$SUPABASE_ACCESS_TOKEN|g" example/deploy.gql
env:
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }}
- name: Run Dagger Pipelines
run: dagger call deploy --src . --token SUPABASE_ACCESS_TOKEN --project-id xovhyzmcpinxtqirtjdp
working-directory: example
env:
SUPABASE_ACCESS_TOKEN: ${{ secrets.SUPABASE_ACCESS_TOKEN }}