Skip to content

Commit 905ef49

Browse files
committed
2 parents 66771b6 + 2a35b33 commit 905ef49

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/dotnet-desktop.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Install .NET Core
1414
uses: actions/setup-dotnet@v4
1515
with:
16-
dotnet-version: 8.0.x
16+
dotnet-version: 9.0.x
1717

1818
- name: Restore dependencies
1919
run: dotnet restore src/PostgreSQL.Migrations.Console/Migrations.Console.csproj
@@ -25,12 +25,12 @@ jobs:
2525
uses: actions/upload-artifact@v4
2626
with:
2727
name: macos64
28-
path: src/PostgreSQL.Migrations.Console/bin/Release/net8.0/osx-x64/publish/fmigrations
28+
path: src/PostgreSQL.Migrations.Console/bin/Release/net9.0/osx-x64/native/fmigrations
2929
- name: Upload arm64 artifacts
3030
uses: actions/upload-artifact@v4
3131
with:
3232
name: macosarm64
33-
path: src/PostgreSQL.Migrations.Console/bin/Release/net8.0/osx-arm64/publish/fmigrations
33+
path: src/PostgreSQL.Migrations.Console/bin/Release/net9.0/osx-arm64/native/fmigrations
3434

3535
windows64:
3636
runs-on: windows-latest
@@ -41,24 +41,24 @@ jobs:
4141
- name: Install .NET Core
4242
uses: actions/setup-dotnet@v4
4343
with:
44-
dotnet-version: 8.0.x
44+
dotnet-version: 9.0.x
4545

4646
- name: Restore dependencies
4747
run: dotnet restore src/PostgreSQL.Migrations.Console/Migrations.Console.csproj
4848
- name: Publish x64 application
49-
run: dotnet publish -r win-x64 -c Release -p:PublishAot=false --self-contained true -p:PublishSingleFile=true src/PostgreSQL.Migrations.Console/Migrations.Console.csproj
49+
run: dotnet publish -r win-x64 -c Release --self-contained true src/PostgreSQL.Migrations.Console/Migrations.Console.csproj
5050
- name: Publish arm64 application
5151
run: dotnet publish -r win-arm64 -c Release --self-contained true src/PostgreSQL.Migrations.Console/Migrations.Console.csproj
5252
- name: Upload x64 artifacts
5353
uses: actions/upload-artifact@v4
5454
with:
5555
name: windows64
56-
path: src/PostgreSQL.Migrations.Console/bin/Release/net8.0/win-x64/publish/fmigrations.exe
56+
path: src/PostgreSQL.Migrations.Console/bin/Release/net9.0/win-x64/native/fmigrations.exe
5757
- name: Upload arm64 artifacts
5858
uses: actions/upload-artifact@v4
5959
with:
6060
name: windowsarm64
61-
path: src/PostgreSQL.Migrations.Console/bin/Release/net8.0/win-arm64/publish/fmigrations.exe
61+
path: src/PostgreSQL.Migrations.Console/bin/Release/net9.0/win-arm64/native/fmigrations.exe
6262

6363
linux64:
6464
runs-on: ubuntu-latest
@@ -81,7 +81,7 @@ jobs:
8181
- uses: actions/upload-artifact@v4
8282
with:
8383
name: linux64
84-
path: src/PostgreSQL.Migrations.Console/bin/Release/net9.0/linux-x64/publish/fmigrations
84+
path: src/PostgreSQL.Migrations.Console/bin/Release/net9.0/linux-x64/native/fmigrations
8585
- uses: actions/upload-artifact@v4
8686
with:
8787
name: linuxarm64

0 commit comments

Comments
 (0)