gh workflow run manual.yml -f greeting=goodbye
gh variable set USERNAME --body 'octocat'
go build -o bin/example -ldflags "-X main.version=v1.2.3" go/example/main.go
export GHCR_USER=$(gh config get -h github.com user)
gh auth refresh --scopes write:packages
gh auth token | docker login ghcr.io -u $GHCR_USER --password-stdin
docker build -t ghcr.io/${GHCR_USER}/example:latest docker/example/
docker push ghcr.io/${GHCR_USER}/example:latest
docker pull ghcr.io/${GHCR_USER}/example:latest