use dagger connect #15
Workflow file for this run
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
# Do not edit this file directly. It is generated by https://deno.land/x/fluent_github_actions | |
name: Zenith Example | |
on: | |
push: | |
branches: | |
- zenith | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Dagger Zenith | |
run: | | |
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.8 sh | |
sudo mv bin/dagger /usr/local/bin | |
dagger version | |
- name: Setup Service Account | |
run: echo $GCP_SERVICE_ACCOUNT > example/fluentci-086b644d4c53.json | |
env: | |
GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }} | |
- name: Run Dagger Pipelines | |
run: | | |
dagger query --doc init.gql | |
echo "=> Waiting for the service to be ready..." | |
sleep 5 | |
dagger query --doc validate.gql | |
working-directory: example |