Skip to content

Commit

Permalink
Fix installer workflow step error
Browse files Browse the repository at this point in the history
  • Loading branch information
siblount committed Dec 20, 2024
1 parent aa19a19 commit bdb4608
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 26 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
timeout-minutes: 30

steps:
# Build and test
- uses: actions/checkout@v3
with:
lfs: 'true'
Expand All @@ -37,24 +38,13 @@ jobs:
- name: Build and test (no versioning)
run: ./build.ps1 --no-version

compile:
name: "Compile Installer"
runs-on: windows-latest
needs: build
timeout-minutes: 3

steps:
# Compile installer steps
- name: Compile Windows-x64 installer (test)
uses: Minionguyjpro/[email protected]
with:
path: ./src/DAZ_Installer.Installer/Windows64.iss

upload-artifacts:
name: Upload artifacts
runs-on: windows-latest
needs: compile

steps:
# Upload artifacts
- name: Upload installer artifact
uses: actions/upload-artifact@v3
with:
Expand Down
15 changes: 2 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,13 @@ jobs:
- name: Build, test, and update versioning
run: ./build.ps1

compile:
name: "Compile Installer"
runs-on: windows-latest
needs: build
timeout-minutes: 3

steps:
# Compile installer steps
- name: Compile Windows-x64 installer (test)
uses: Minionguyjpro/[email protected]
with:
path: ./src/DAZ_Installer.Installer/Windows64.iss

upload-artifacts:
name: Upload artifacts
runs-on: windows-latest
needs: compile

steps:
# Upload artifacts
- name: Upload installer artifact
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit bdb4608

Please sign in to comment.