restart the update provisioning session when interrupted #172
Workflow file for this run
This file contains hidden or 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@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.25.0' | |
| - 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/*/* |