This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
dagger/tests/tasks/gitpull/private_repo.cue
Helder Correia 24d3f82fc7
Cleanup inputs, outputs and proxy
Superceded by Client API.

Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com>
2022-03-08 20:45:28 -01:00

45 lines
747 B
CUE

package main
import (
"dagger.io/dagger"
)
dagger.#Plan & {
client: commands: sops: {
name: "sops"
args: ["-d", "secrets_sops.yaml"]
stdout: dagger.#Secret
}
actions: {
alpine: dagger.#Pull & {
source: "alpine:3.15.0"
}
sopsSecrets: dagger.#DecodeSecret & {
format: "yaml"
input: client.commands.sops.stdout
}
testRepo: dagger.#GitPull & {
remote: "https://github.com/dagger/dagger.git"
ref: "main"
auth: {
username: "dagger-test"
password: sopsSecrets.output.TestPAT.contents
}
}
testContent: dagger.#Exec & {
input: alpine.output
always: true
args: ["ls", "-l", "/repo/README.md"]
mounts: inputRepo: {
dest: "/repo"
contents: testRepo.output
}
}
}
}