Skip to content

Commit

Permalink
Checkout sources before building installer
Browse files Browse the repository at this point in the history
Now that the installer job is not running in the same job matrix as the
tests, we need to re-run the dotnet restore and build steps again.
  • Loading branch information
rmunn committed Nov 7, 2024
1 parent 1837f1d commit 1eaa017
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci+cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,17 @@ jobs:
runs-on: windows-latest
needs: build-and-test
steps:
- name: Checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
with:
fetch-depth: 0 # fetch full history for GitVersion

- name: Restore
run: dotnet restore

- name: Build
run: dotnet build --no-restore -c Release

- name: Checkout Chorus Help # required for Chorus Merge Module
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
with:
Expand Down

0 comments on commit 1eaa017

Please sign in to comment.