Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Release

Release #14

Workflow file for this run

name: Release
on:
workflow_run:
workflows: ["Build JAR Artifact"]
branches: [master]
types:
- completed
permissions:
contents: write
jobs:
release:
if: github.event.workflow_run.conclusion == 'success' && startsWith(github.event.workflow_run.head_branch, 'refs/tags/v')
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
# download artifact asa_sm_jar
- uses: actions/download-artifact@v3
with:
name: asa_sm_jar
path: target
- name: Building the installer
run: |
cd innosetup
"%programfiles(x86)%\Inno Setup 6\iscc.exe" "script.iss"
shell: cmd
- uses: ncipollo/[email protected]
with:
artifacts: "innosetup/Output/*.exe"
prerelease: true
generateReleaseNotes: true