Skip to content

Commit

Permalink
Install .NET6 so we can use raw string literals
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Aug 11, 2023
1 parent 9e5df16 commit a6d5616
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
- name: 🤘 checkout
uses: actions/checkout@v2

- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
dotnet-quality: 'preview'

- name: 🙏 build
run: |
dotnet build -m:1
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
with:
fetch-depth: 0

- uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
dotnet-quality: 'preview'

- name: 🙏 build
run: dotnet build -m:1

Expand Down

0 comments on commit a6d5616

Please sign in to comment.