ok-ready-go/.drone.yml
Dorian Zedler 6ac75701e7
All checks were successful
continuous-integration/drone/push Build is passing
Chore: remove test
2023-02-16 13:39:03 +01:00

27 lines
811 B
YAML

kind: pipeline
type: exec
name: build-receiver-windows
platform:
os: windows
arch: amd64
steps:
- name: build
environment:
RUSTFLAGS: '-C target-feature=+crt-static'
commands:
- whoami
- cd receiver
- 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:
- '& "C:\Program Files\Git\mingw64\bin\curl.exe" --user $${env:GITEA_USER}:$${env:GITEA_TOKEN} --upload-file receiver/target/x86_64-pc-windows-msvc/release/receiver.exe https://itsblue.dev/api/packages/dorian/generic/ok-ready-go/$${env:DRONE_COMMIT_SHA}/receiver-windows.exe'
trigger:
branch:
- main