Skip to content

Commit e4c1966

Browse files
committed
fix: another fix for workflow
1 parent 675242f commit e4c1966

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343
run: dotnet restore
4444

4545
- name: Publish
46-
run: dotnet publish -c Release -p:PublishProfile=FolderProfile -p:PublishDir=./publish
46+
run: dotnet publish -c Release -p:PublishProfile=FolderProfile -p:PublishDir=${{ github.workspace }}/publish
4747

4848
- name: Upload publish artifact
4949
uses: actions/upload-artifact@v6
5050
with:
5151
name: publish-folder
52-
path: ./publish
52+
path: ${{ github.workspace }}/publish
5353

5454
create-release:
5555
runs-on: windows-latest
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/download-artifact@v6
6060
with:
6161
name: publish-folder
62-
path: ./publish
62+
path: ${{ github.workspace }}/publish
6363

6464
- name: Create ZIP file
6565
run: |

0 commit comments

Comments
 (0)