Skip to content

Commit beade18

Browse files
dotnet warp can't create a path...
1 parent 92e7c36 commit beade18

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/release-action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939

4040
# Decode the base 64 encoded pfx and save the Signing_Certificate
4141
- name: Build
42-
run: dotnet warp $env:ProjectPath -o ${{ env.ProjectDirectory }}\publish\${{ env.FileName }}.exe
42+
run: |
43+
mkdir ${{ env.ProjectDirectory }}\publish
44+
dotnet warp $env:ProjectPath -o ${{ env.ProjectDirectory }}\publish\${{ env.FileName }}.exe
4345
4446
# Publish
4547
- name: Upload build artifacts

0 commit comments

Comments
 (0)