Merge pull request #43 from flozz/dependabot/github_actions/JamesIves… #24
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: "Windows Standalone Build" | |
on: | |
push: | |
tags: | |
- "v[0-9]+\\.[0-9]+\\.[0-9]+" | |
- "v[0-9]+\\.[0-9]+\\.[0-9]+-[0-9]+" | |
branches: | |
- master | |
jobs: | |
build: | |
name: "Build Windows standalone version" | |
runs-on: windows-latest | |
steps: | |
- name: "Checkout the repository" | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: "Set up Python" | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: "Build img2gb Windows Standelone Version" | |
shell: bash | |
run: | | |
./scripts/build-windows.sh | |
- name: "Archive Windows Build" | |
uses: actions/upload-artifact@v4 | |
with: | |
path: dist/img2gb-*.exe |