diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index d57fd37..0000000 --- a/.drone.yml +++ /dev/null @@ -1,28 +0,0 @@ -kind: pipeline -type: docker -name: default - -steps: - - name: validate - image: golang - commands: - - go build - - go test - - name: deploy - image: golang - environment: - SSH_PRIVATE_KEY: - from_secret: ssh_private_key - commands: - - go build - - apt-get update; apt-get install -y rsync - - mkdir ~/.ssh - - echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa; chmod 600 ~/.ssh/id_rsa - - ssh-keyscan -t rsa factorio.blackolivepineapple.pizza >> ~/.ssh/known_hosts - - ssh service@factorio.blackolivepineapple.pizza sudo service factorio-site stop || true - - rsync --rsync-path="sudo rsync" --archive --verbose --compress . service@factorio.blackolivepineapple.pizza:/opt/factorio-site/ - - ssh service@factorio.blackolivepineapple.pizza sudo mv /opt/factorio-site/factorio-site.service /etc/systemd/system/ - - ssh service@factorio.blackolivepineapple.pizza sudo systemctl daemon-reload - - ssh service@factorio.blackolivepineapple.pizza sudo service factorio-site start - when: - branch: master diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7b57339 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +minecraft-site: minecraft-site.go index.html go.mod go.sum + go build -tags netgo -ldflags '-extldflags "-static"' + +.PHONY: deploy +deploy: minecraft-site + rsync --rsync-path="sudo -u minecraft rsync" minecraft-site zirconium:/home/minecraft/minecraft-site + ssh zirconium sudo systemctl restart minecraft-site.service diff --git a/templates/index.html b/index.html similarity index 89% rename from templates/index.html rename to index.html index 385a4e0..e04fff8 100644 --- a/templates/index.html +++ b/index.html @@ -55,6 +55,9 @@ {{end}} {{end}} -
This page maintained by chandlerswift's minecraft server list.
++ This page maintained by chandlerswift's minecraft server list. + API at /data.json. +