Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Bassman2 committed Dec 29, 2024
1 parent 7b3172b commit fd1f607
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Install SHFB
uses: Bassman2/setup-SHFB@v1
if: ${{ hashFiles( ${{ env.Sandcastle }} ) != '' }}
if: ${{ hashFiles( 'main/Doc/*/*.shfbproj' ) != '' }}

- name: Cache packages
uses: actions/cache@v4
Expand All @@ -55,21 +55,21 @@ jobs:
run: dotnet build ${{ env.Solution }} -c Release --no-restore

- name: Nuget pack nuspec
working-directory: .\main\Nuget\
working-directory: main/Nuget
run: nuget pack ${{ github.event.repository.name }}.nuspec -properties Configuration=Release
if: ${{ hashFiles( ${{ env.NugetSpec }} ) != '' }}
if: ${{ hashFiles( 'main/Nuget/*.nuspec' ) != '' }}

- name: Upload nuget pack artifact
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}NugetPackage.zip
path: main/Nuget/*.nupkg
if: ${{ hashFiles( ${{ env.NugetSpec }} ) != '' }}
if: ${{ hashFiles( 'main/Nuget/*.nuspec' ) != '' }}

- name: Upload documentation artifact
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}Doc.zip
path: main/Doc/${{ github.event.repository.name }}Doc/Help/${{ github.event.repository.name }}.chm
if: ${{ hashFiles( ${{ env.Sandcastle }} )) != '' }}
if: ${{ hashFiles( 'main/Doc/*/*.shfbproj' != '' }}

0 comments on commit fd1f607

Please # to comment.