Zip file updated #115
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 Windows | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 'feature/*' | |
| tags: | |
| - 'v*' | |
| jobs: | |
| build: | |
| name: Build Windows | |
| runs-on: windows-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Fix up git URLs | |
| run: echo -e '[url "https://github.com/"]\n insteadOf = "git@github.com:"' >> ~/.gitconfig | |
| shell: bash | |
| - uses: actions/checkout@v1 | |
| with: | |
| token: ${{ secrets.ACCESS_TOKEN }} | |
| submodules: true | |
| - name: "Run script" | |
| run: | | |
| export OS="win" | |
| ./ci/build.sh | |
| shell: bash | |
| env: | |
| APIKEY: ${{ secrets.APIKEY }} | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: SID_Windows | |
| path: ci/bin/*.zip | |
| retention-days: 30 | |
| - name: Upload to GitHub Release | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: ci/bin/*.zip |