crowdsec/.github/workflows/ci-windows-build-msi.yml

47 lines
899 B
YAML
Raw Normal View History

name: build-msi (windows)
2022-05-17 10:14:59 +00:00
on:
release:
types:
- prereleased
push:
branches:
- master
- releases/**
paths:
- windows/installer/*.wxs
- .github/workflows/ci-windows-build-msi.yml
2022-05-17 10:14:59 +00:00
pull_request:
branches:
- master
- releases/**
paths:
- windows/installer/*.wxs
- .github/workflows/ci-windows-build-msi.yml
2022-05-17 10:14:59 +00:00
jobs:
2022-05-17 10:14:59 +00:00
build:
name: Build
runs-on: windows-2019
2023-02-28 16:25:09 +00:00
2022-05-17 10:14:59 +00:00
steps:
2023-02-28 16:25:09 +00:00
2022-05-17 10:14:59 +00:00
- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
fetch-depth: 0
2023-02-28 16:25:09 +00:00
submodules: false
- name: "Set up Go"
uses: actions/setup-go@v5
2023-02-28 16:25:09 +00:00
with:
2024-04-25 13:11:08 +00:00
go-version: "1.22.2"
2023-02-28 16:25:09 +00:00
2022-05-17 10:14:59 +00:00
- name: Build
run: make windows_installer BUILD_RE2_WASM=1
2022-05-17 10:14:59 +00:00
- name: Upload MSI
2024-03-14 13:04:45 +00:00
uses: actions/upload-artifact@v4
2022-05-17 10:14:59 +00:00
with:
path: crowdsec*msi
name: crowdsec.msi