Skip to content

Commit

Permalink
release inno fix
Browse files Browse the repository at this point in the history
  • Loading branch information
null511 committed Oct 17, 2024
1 parent ab3167a commit 57b4018
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
compile_inno:
name: Compile Installer
runs-on: windows-latest
container: eckertj/inno-setup
steps:
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v4
Expand All @@ -79,7 +78,7 @@ jobs:
- name: Compile Binaries
run: |
dotnet publish PixelGraph.UI -c Release -r win-x64 -o publish -p:EnableWindowsTargeting=true --self-contained false
iscc ./Inno/setup.iss
docker run --name=inno-setup --rm -v .:/app -w /app eckertj/inno-setup "iscc.exe ./Inno/setup.iss"
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
Expand All @@ -89,7 +88,7 @@ jobs:
publish_release:
name: Publish Release
runs-on: ubuntu-latest
needs: [compile_cli, compile_ui]
needs: [compile_cli, compile_ui, compile_inno]
permissions:
contents: write
steps:
Expand Down

0 comments on commit 57b4018

Please sign in to comment.