WIP 20 #20
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 and package Windows | |
on: push | |
jobs: | |
build: | |
name: 'Build for Windows' | |
uses: ./.github/workflows/build.yml | |
with: | |
target_platform: StandaloneWindows64 | |
secrets: inherit | |
package_windows: | |
name: Package Windows build | |
needs: build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: windows-installer.iss | |
- uses: actions/download-artifact@v4 | |
with: | |
name: ${{ needs.build.outputs.artifact_name }} | |
run-id: ${{ needs.build.outputs.run_id }} | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path: public | |
- name: Compile installer | |
uses: Minionguyjpro/[email protected] | |
with: | |
path: ./windows-installer.iss | |
options: /O+ | |
- run: dir | |
- run: dir Output | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: 'Windows Installer' | |
path: 'Output/Install Pop Pixie.exe' |