16 lines
172 B
Bash
16 lines
172 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mkdir test
|
||
|
|
||
|
cat > test/source.cue << EOF
|
||
|
package test
|
||
|
|
||
|
import (
|
||
|
"github.com/tjovicic/gcpcloudrun"
|
||
|
)
|
||
|
|
||
|
run: gcpcloudrun.#Run
|
||
|
EOF
|
||
|
|
||
|
dagger new staging -p ./test
|