This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
sitio/.woodpecker.yml

30 lines
906 B
YAML
Raw Permalink Normal View History

2023-11-12 09:56:05 +00:00
steps:
2023-07-17 19:36:55 +00:00
setup:
2023-07-17 19:26:53 +00:00
image: gitea.nulo.in/nulo/super-image:3.18
commands:
- pnpm install
2023-11-12 09:40:33 +00:00
# check:
# image: gitea.nulo.in/nulo/super-image:3.18
# commands:
# - pnpm check
# when:
# path:
# include: ["*.js", "*.ts", "package.json", "pnpm-lock.yaml", "tsconfig.json"]
2023-07-17 19:36:55 +00:00
build:
image: gitea.nulo.in/nulo/super-image:3.18
commands:
2023-07-17 19:42:03 +00:00
- pnpm refresh-feeds
- pnpm build
2023-07-17 19:36:55 +00:00
upload:
image: gitea.nulo.in/nulo/super-image:3.18
commands:
2023-07-17 19:26:53 +00:00
- |
eval $(ssh-agent -s)
echo "$${SSH_KEY}" | tr -d '\r' | ssh-add -
mkdir -p ~/.ssh
echo "[dorsiblanco.nulo.in]:2223 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEQEuHNIWQcS5La6lc2OvHQxZN6tRVtkts2wH1tfpola root@853c93d633a9" > ~/.ssh/known_hosts
- rsync --rsh='ssh -p2223' --recursive --chmod=644 build/ root@dorsiblanco.nulo.in:/data/nulo_ar/
secrets:
- ssh_key