46 lines
899 B
YAML
46 lines
899 B
YAML
name: build-msi (windows)
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- prereleased
|
|
push:
|
|
branches:
|
|
- master
|
|
- releases/**
|
|
paths:
|
|
- windows/installer/*.wxs
|
|
- .github/workflows/ci-windows-build-msi.yml
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- releases/**
|
|
paths:
|
|
- windows/installer/*.wxs
|
|
- .github/workflows/ci-windows-build-msi.yml
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: windows-2019
|
|
|
|
steps:
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
submodules: false
|
|
|
|
- name: "Set up Go"
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "1.21.9"
|
|
|
|
- name: Build
|
|
run: make windows_installer BUILD_RE2_WASM=1
|
|
- name: Upload MSI
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
path: crowdsec*msi
|
|
name: crowdsec.msi
|