Skip to content

Commit 2886413

Browse files
committed
Update actions
1 parent 867a154 commit 2886413

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/docfx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup .NET
2323
uses: actions/setup-dotnet@v3
2424
with:
25-
dotnet-version: 8.0.0
25+
dotnet-version: 9.0.0
2626
- name: Install DocFX
2727
run: dotnet tool update -g docfx
2828
continue-on-error: true

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
- name: Setup .NET
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: 8.0.x
20+
dotnet-version: 9.0.x
2121
include-prerelease: true
2222
- name: Restore dependencies
2323
run: dotnet restore
2424
- name: Build
2525
run: dotnet build --no-restore --configuration Release /p:DebugType=None
2626
- name: Rename executables
27-
working-directory: /home/runner/work/Obsidian/Obsidian/Obsidian.ConsoleApp/bin/Release/net8.0/
27+
working-directory: /home/runner/work/Obsidian/Obsidian/Obsidian.ConsoleApp/bin/Release/net9.0/
2828
run: |
2929
mv Obsidian.ConsoleApp.dll ObsidianApp.dll
3030
mv Obsidian.ConsoleApp.deps.json ObsidianApp.deps.json
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/upload-artifact@v4
3434
with:
3535
name: Obsidian-Nightly-Build
36-
path: /home/runner/work/Obsidian/Obsidian/Obsidian.ConsoleApp/bin/Release/net8.0/
36+
path: /home/runner/work/Obsidian/Obsidian/Obsidian.ConsoleApp/bin/Release/net9.0/
3737
if: ${{ github.event_name == 'push' }} # Only upload artifacts on push, don't upload them for PRs
3838
- name: Discord Webhook Action
3939
uses: tsickert/discord-webhook@v4.0.0

.github/workflows/nuget-push.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
uses: actions/setup-dotnet@v3
2727
with:
2828
dotnet-version: |
29+
9
2930
8
3031
7
3132
- name: Pack n Push

0 commit comments

Comments
 (0)