Skip to content

Commit da0d3be

Browse files
committed
fix dotnet publish
1 parent 4fd2556 commit da0d3be

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/dotnet-cd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: dotnet build rubberduckvba.Server --configuration Release
2828

2929
- name: dotnet publish
30-
run: dotnet publish --target rubberduckvba.Server\rubberduckvba.Server.csproj --configuration Release --output ${{env.DOTNET_ROOT}}\pub
30+
run: dotnet publish --target rubberduckvba.Server --configuration Release --output ${{env.DOTNET_ROOT}}\pub
3131

3232
- name: Upload artifact for deployment job
3333
uses: actions/upload-artifact@v3

.github/workflows/dotnet-ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- name: Setup .NET
15-
uses: actions/setup-dotnet@v4
16-
with:
17-
dotnet-version: 8.0.x
14+
# - name: Setup .NET
15+
# uses: actions/setup-dotnet@v4
16+
# with:
17+
# dotnet-version: 8.0.x
1818
- name: Restore dependencies
1919
run: dotnet restore
2020
- name: Build

0 commit comments

Comments
 (0)