Compare commits

...

2 commits

Author SHA1 Message Date
d086d55fb1 Bring in the Makefile 2021-11-17 20:42:48 -03:00
85326d5b67 CI: matar 2021-11-17 20:33:53 -03:00
2 changed files with 8 additions and 22 deletions

View file

@ -1,22 +0,0 @@
clone:
git:
image: woodpeckerci/plugin-git
pipeline:
build:
image: docker.io/golang:1.17-alpine
commands:
- CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' .
upload:
image: docker.io/alpine:3.14
commands:
- apk add dropbear-dbclient dropbear-scp
- mkdir -p ~/.ssh
- echo "$${SSH_KEY}" | base64 -d >> ~/.ssh/id_dropbear
- echo "nulo.in ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHgHIbf5/jkeyLMndnWlEO12DPj41YPqkmz+aIreVOsP" >> ~/.ssh/known_hosts
- scp -r -P420 nft.nulo.in templates assets nftmashin@nulo.in:/home/nftmashin/
secrets:
- ssh_key
when:
event: push
branch: kopimi

8
Makefile Normal file
View file

@ -0,0 +1,8 @@
.PHONY: nft.nulo.in
nft.nulo.in:
CGO_ENABLED=0 GOOS=linux go build -a -ldflags '-extldflags "-static"' .
upload: nft.nulo.in
ssh root@nulo.in/993 sv stop nftmashin
scp -r -P993 nft.nulo.in templates assets nftmashin@nulo.in:/home/nftmashin/
ssh root@nulo.in/993 sv start nftmashin