updated dronefile
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Jake Hillion 2021-06-14 19:42:15 +01:00
parent c7e1000018
commit c281bf2ff5
2 changed files with 4 additions and 3 deletions

View File

@ -34,6 +34,7 @@ steps:
path: /vendor path: /vendor
commands: commands:
- cargo build --release - cargo build --release
- tar -czvf target/release/linux_amd64.tar.gz target/release/{farm,node,plot,wallet}
- name: release - name: release
image: plugins/gitea-release image: plugins/gitea-release
@ -42,7 +43,7 @@ steps:
from_secret: gitea_token from_secret: gitea_token
base_url: https://gitea.hillion.co.uk base_url: https://gitea.hillion.co.uk
files: files:
- target/release/plot - target/release/linux_amd64.tar.gz
checksum: checksum:
- sha256 - sha256
when: when:

View File

@ -1,8 +1,8 @@
[workspace] [workspace]
members = [ members = [
"plot",
"farm", "farm",
"wallet",
"node", "node",
"plot",
"wallet",
] ]