Skip to content

Commit

Permalink
ci: update script
Browse files Browse the repository at this point in the history
  • Loading branch information
punker76 committed Apr 18, 2024
1 parent 99af337 commit 490d0c5
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,25 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
6.x
8.x
- name: List dotnet sdks
run: dotnet --info
- name: Cache tools, ~/.nuget/packages
uses: actions/cache@v2
with:
path: |
tools
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
- name: Run './build.ps1'
run: ./build.ps1
- name: Run the Cake script
uses: cake-build/cake-action@v1
with:
cake-version: tool-manifest
verbosity: Normal
script-path: build.cake
target: Default

0 comments on commit 490d0c5

Please sign in to comment.