This commit is contained in:
parent
1b26bc0be6
commit
c2e1732778
1 changed files with 9 additions and 1 deletions
10
.drone.yml
10
.drone.yml
|
@ -5,7 +5,7 @@ platform:
|
|||
os: windows
|
||||
arch: amd64
|
||||
steps:
|
||||
- name: test
|
||||
- name: build
|
||||
environment:
|
||||
RUSTFLAGS: '-C target-feature=+crt-static'
|
||||
commands:
|
||||
|
@ -14,6 +14,14 @@ steps:
|
|||
- C:\Users\doria\.cargo\bin\rustup.exe default stable
|
||||
- C:\Users\doria\.cargo\bin\cargo.exe build --release --target x86_64-pc-windows-msvc
|
||||
|
||||
- name: upload
|
||||
environment:
|
||||
GITEA_USER:
|
||||
from_secret: gitea-user
|
||||
GITEA_TOKEN:
|
||||
from_secret: gitea-token
|
||||
commands:
|
||||
- curl --user $GITEA_USER:$GITEA_TOKEN --upload-file receiver/target/x86_64-pc-windows-msvc/release/receiver.exe https://itsblue.dev/api/packages/dorian/generic/ok-ready-go/$DRONE_COMMIT_SHA/receiver-windows.exe
|
||||
trigger:
|
||||
branch:
|
||||
- main
|
Loading…
Reference in a new issue