Skip to content

df

df #21

Workflow file for this run

name: dagger
on:
push:
branches: [main]
jobs:
hello:
name: hello
runs-on: ubuntu-latest
steps:
-
name: Call Dagger Function
uses: dagger/dagger-for-github@v6
with:
version: "latest"
verb: call
# modify to use different function(s) as needed
module: github.com/shykes/daggerverse/hello@v0.1.2
args: hello --greeting="bonjour" --name="monde"
# assumes the Dagger Cloud token is in
# a repository secret named DAGGER_CLOUD_TOKEN
# set via the GitHub UI/CLI
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}