Hi, sorry for the stupid question but is there any guideline on how to run the pipeline in GitHub actions?
I created the pipeline.yml in github workflows but it is not working (i need to run script pipeline.py):
name: good-ci-cd
on:
push:
# Trigger this workflow only on commits pushed to the main branch
branches:
- main
jobs:
dagger:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
# You need to run `dagger-cue project init` locally before and commit the cue.mod directory to the repository with its contents
- name: Run provisioning
uses: dagger/dagger-for-github@v3
# See all options at https://github.com/dagger/dagger-for-github
with:
version: 0.2
# To pin external dependencies, you can use `project update github.com/[package-source]@v[n]`
cmds: |
project update
do pipeline
env:
GOODDATA_HOST: ${{ secrets.GOODDATA_HOST }}
GOODDATA_TOKEN: ${{ secrets.GOODDATA_TOKEN }}
GOODDATA_STAGING_WORKSPACE_ID: ${{ secrets.GOODDATA_STAGING_WORKSPACE_ID }}
GOODDATA_PRODUCTION_WORKSPACE_ID: ${{ secrets.GOODDATA_PRODUCTION_WORKSPACE_ID }}