add public release volume to build pipeline
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/promote/environment Build is failing

Allows us to get the latest build at any time from: https://public.deadbeef.codes/build/
This commit is contained in:
Steven Polley 2024-04-14 08:49:10 -06:00
parent 42e5679570
commit 3cbd6eace2

View File

@ -19,6 +19,9 @@ steps:
- name: build hyp linux-amd64
image: registry.deadbeef.codes/hyp-build:latest
pull: always
volumes:
- name: publicrelease
path: /dist
environment:
GOOS: linux
GOARCH: amd64
@ -27,15 +30,19 @@ steps:
- mkdir /dist
- cd hyp
- go build .
- mv hyp /dist
- mv -f hyp /dist
- cd ../hypd/server
- go generate
- cd ..
- go build .
- mv hypd /dist
- mv -f hypd /dist
- name: release
image: plugins/gitea-release
pull: always
volumes:
- name: publicrelease
path: /dist
settings:
api_key:
from_secret: drone_token
@ -46,3 +53,8 @@ steps:
include:
- release
volumes:
- name: publicrelease
host:
path: /data/public/build