diff --git a/docs/tests/getting-started/github-actions.yml b/docs/tests/getting-started/github-actions.yml index 0eb072e8..beb70612 100644 --- a/docs/tests/getting-started/github-actions.yml +++ b/docs/tests/getting-started/github-actions.yml @@ -23,9 +23,20 @@ jobs: - name: Clone repository uses: actions/checkout@v2 + - name: Project init + uses: dagger/dagger-for-github@v2 + # See all options at https://github.com/dagger/dagger-for-github + with: + args: project init + + - name: Project update + uses: dagger/dagger-for-github@v2 + # See all options at https://github.com/dagger/dagger-for-github + with: + args: project update + - name: Deploy to Netlify uses: dagger/dagger-for-github@v2 # See all options at https://github.com/dagger/dagger-for-github with: - workdir: pkg/universe.dagger.io/examples/todoapp - args: do deploy + args: do deploy \ No newline at end of file