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

38 lines
896 B
YAML
Raw Normal View History

name: build-msi (windows)
2022-05-17 10:14:59 +00:00
on:
pull_request:
branches: [ master ]
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
- 'README.md'
jobs:
build:
name: Build
runs-on: windows-2019
steps:
2022-08-26 11:31:49 +00:00
- name: Set up Go 1.19
uses: actions/setup-go@v3
2022-05-17 10:14:59 +00:00
with:
2022-08-26 11:31:49 +00:00
go-version: 1.19
2022-05-17 10:14:59 +00:00
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- id: get_latest_release
uses: pozetroninc/github-action-get-latest-release@master
with:
repository: crowdsecurity/crowdsec
excludes: draft
- id: set_release_in_env
run: echo "BUILD_VERSION=${{ steps.get_latest_release.outputs.release }}" >> $env:GITHUB_ENV
- name: Build
run: make windows_installer
- name: Upload MSI
uses: actions/upload-artifact@v2
with:
path: crowdsec*msi
name: crowdsec.msi