From 22ad0e29cb61a7d32bccf301b87b80b51b84d125 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Mon, 24 May 2021 20:27:45 +0100 Subject: make debs/rpms, upload .debs to repo --- .drone.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to '.drone.yml') diff --git a/.drone.yml b/.drone.yml index 9875891..f18be0d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,6 +5,9 @@ type: docker steps: - name: build image: golang:latest + volumes: + - name: ssh_key + path: /id_rsa commands: - apt update -y - apt install -y python3-pip curl @@ -14,11 +17,17 @@ steps: - ./goreleaser.sh --snapshot --skip-publish --rm-dist - wget https://builds.hrfee.pw/upload.py - pip3 install requests - - bash -c 'python3 upload.py https://builds2.hrfee.pw hrfee waybar-mpris --upload ./dist/*.tar.gz' + - bash -c 'sftp -P 2022 -i /id_rsa -o StrictHostKeyChecking=no root@161.97.102.153:/repo/incoming <<< $"put dist/*.deb"' + - bash -c 'ssh -i /id_rsa root@161.97.102.153 -p 2022 "repo-process-deb trusty-unstable"' + - bash -c 'python3 upload.py https://builds2.hrfee.pw hrfee waybar-mpris --upload ./dist/*.tar.gz ./dist/*.rpm' environment: BUILDRONE_KEY: from_secret: BUILDRONE_KEY +volumes: + - name: ssh_key + host: + path: /root/.ssh/id_rsa_packaging trigger: branch: - main -- cgit v1.2.3