Allow endpoint config. #105
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
name: Run dagger on push | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read # needed for checkout | |
jobs: | |
runDagger: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Call dagger on-push | |
uses: dagger/dagger-for-github@v5 | |
with: | |
version: "0.11.1" | |
verb: call | |
args: push-dirs --dir=./modules --token=${{ secrets.GITHUB_TOKEN }} | |
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }} |