7ad5f264e6
Signed-off-by: Jean-Yves Gastaud <jygastaud@gmail.com> Signed-off-by: Sam Alba <samalba@users.noreply.github.com>
16 lines
175 B
Bash
16 lines
175 B
Bash
#!/bin/bash
|
|
|
|
mkdir -p test
|
|
|
|
cat > test/source.cue << EOF
|
|
package test
|
|
|
|
import (
|
|
"github.com/username/gcpcloudrun"
|
|
)
|
|
|
|
run: gcpcloudrun.#Run
|
|
EOF
|
|
|
|
dagger new staging -p ./test
|