Skip to content

Update README.md

Update README.md #25

Workflow file for this run

name: GitHub Actions Demo

Check failure on line 1 in .github/workflows/go.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/go.yml

Invalid workflow file

Invalid `steps` value - steps should be list of `uses` or `run` items
run-name: Github actions 🚀
on: [push]
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 }}