Files
dyn2py/.github/workflows/build-installer.yml
dependabot[bot] 57b4477c39 Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v3...v4.1.7)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-03 22:22:18 +00:00

30 lines
737 B
YAML

on:
workflow_call:
name: Workflow - Build installer
jobs:
build-installer:
runs-on: windows-latest
name: Build Windows installer
steps:
- uses: actions/checkout@v3
name: Checkout
- name: Install Inno Setup
run: |
Invoke-WebRequest -Uri https://jrsoftware.org/download.php/is.exe -OutFile is.exe
.\is.exe /verysilent
- name: Download artifact
uses: actions/download-artifact@v4.1.7
with:
name: dyn2py.exe
- name: Build
run: |
.\dyn2py-installer.ps1
- uses: actions/upload-artifact@v3
name: Upload artifact
with:
name: dyn2py-installer.exe
path: Output/dyn2py-installer.exe