This commit is contained in:
parent
ff6f01534e
commit
fbe490087b
|
@ -29,13 +29,17 @@ local Pipeline(isDev) = {
|
|||
{
|
||||
name: "deploy",
|
||||
commands: [
|
||||
"nix develop -c make deploy",
|
||||
"nix run github:ambroisie/nix-config#drone-scp",
|
||||
],
|
||||
environment: {
|
||||
SSH_HOST: { from_secret: "ssh_host" },
|
||||
SSH_TARGET: { from_secret: "ssh_target" + if isDev then "_dev" else "" },
|
||||
SSH_USER: { from_secret: "ssh_user" },
|
||||
SSH_KEY: { from_secret: "ssh_key" },
|
||||
settings: {
|
||||
source: "public/*",
|
||||
strip_components: 1, # Remove 'public/' suffix from file paths
|
||||
rm: true, # Remove previous files from target directory
|
||||
host: { from_secret: "ssh_host" },
|
||||
target: { from_secret: "ssh_target" + if isDev then "_dev" else "" },
|
||||
username: { from_secret: "ssh_user" },
|
||||
key: { from_secret: "ssh_key" },
|
||||
port: { from_secret: "ssh_port" },
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue