Skip to content

Commit

Permalink
feat: add ci workflow for inno setup
Browse files Browse the repository at this point in the history
  • Loading branch information
noahstreller committed Sep 4, 2024
1 parent 81d6760 commit de1358d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,18 @@ jobs:
- name: Build
run: |
if [[ "${{ matrix.goos }}" == "windows" ]]; then \
go build -v -o out/igitt.exe ./cmd/igitt; \
go build -v -o ./igitt.exe ./cmd/igitt; \
else \
go build -v -o out/igitt ./cmd/igitt; \
fi
- name: Compile .ISS to .EXE Installer
if: matrix.goos == 'windows'
uses: Minionguyjpro/[email protected]
with:
path: ./igitt-setup.iss
options: /Oout/igitt-setup.exe

- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit de1358d

Please sign in to comment.