Skip to content

Commit

Permalink
👷 Fix CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielePicco committed Dec 16, 2024
1 parent f602a07 commit 118dd08
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'

- name: Get the sources
uses: actions/checkout@v2

- name: Run cake
shell: bash
run: |
dotnet tool install Cake.Tool --version 1.1.0
dotnet tool restore
dotnet cake --target=Test --verbosity=verbose
dotnet cake --target=Test --verbosity=verbose dotnet cake --target=Test --verbosity=verbose
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ jobs:
name: build, pack & publish
runs-on: ubuntu-latest
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Get the sources
uses: actions/checkout@v4
- name: build, pack & publish
Expand Down

0 comments on commit 118dd08

Please sign in to comment.