e7a738211f
Signed-off-by: Tom Chauveau <tom.chauveau@epitech.eu>
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/tjovicic/gcpcloudrun"
|
|
)
|
|
|
|
run: gcpcloudrun.#Run
|
|
EOF
|
|
|
|
dagger new staging -p ./test
|