crash when the windows update api returns an invalid update object #149
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-2022 | |
steps: | |
- name: Configure git | |
run: git config --global core.autocrlf false | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22.4' | |
- name: Set up msys2 | |
uses: msys2/setup-msys2@v2 | |
with: | |
install: make tar zip unzip | |
path-type: inherit | |
- name: Build | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: msys2 ./ci-release.sh | |
- name: Archive | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts | |
path: | | |
dist/ | |
!dist/*/* |