mirror of
https://github.com/sp-tarkov/build.git
synced 2025-02-13 03:30:45 -05:00
21 lines
348 B
YAML
21 lines
348 B
YAML
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: windows-build
|
||
|
|
||
|
platform:
|
||
|
os: windows
|
||
|
arch: amd64
|
||
|
|
||
|
trigger:
|
||
|
event:
|
||
|
- tag
|
||
|
|
||
|
steps:
|
||
|
- name: build-and-package
|
||
|
image: mcr.microsoft.com/windows/servercore:ltsc2019
|
||
|
commands:
|
||
|
- powershell -File project/build-script.ps1
|
||
|
environment:
|
||
|
GITEA_TOKEN:
|
||
|
from_secret: gitea_token
|