We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 675242f commit e4c1966Copy full SHA for e4c1966
1 file changed
.github/workflows/publish.yml
@@ -43,13 +43,13 @@ jobs:
43
run: dotnet restore
44
45
- name: Publish
46
- run: dotnet publish -c Release -p:PublishProfile=FolderProfile -p:PublishDir=./publish
+ run: dotnet publish -c Release -p:PublishProfile=FolderProfile -p:PublishDir=${{ github.workspace }}/publish
47
48
- name: Upload publish artifact
49
uses: actions/upload-artifact@v6
50
with:
51
name: publish-folder
52
- path: ./publish
+ path: ${{ github.workspace }}/publish
53
54
create-release:
55
runs-on: windows-latest
@@ -59,7 +59,7 @@ jobs:
59
uses: actions/download-artifact@v6
60
61
62
63
64
- name: Create ZIP file
65
run: |
0 commit comments