Skip to content

Commit 781e3d2

Browse files
committed
Fixing Github actions
1 parent ccd0670 commit 781e3d2

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/linux.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ jobs:
3636
run: dotnet test
3737
- name: Electronize
3838
run: electronize build /target linux
39-
with:
40-
path: ./src/ArcadeManager
39+
working-directory: ./src/ArcadeManager
4140
- name: Upload binaries
4241
uses: actions/upload-artifact@v4
4342
with:

.github/workflows/mac.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ jobs:
3434
run: dotnet test
3535
- name: Electronize ARM
3636
run: electronize build /target osx /electron-arch arm64
37-
with:
38-
path: ./src/ArcadeManager
37+
working-directory: ./src/ArcadeManager
3938
- name: Upload binaries
4039
uses: actions/upload-artifact@v4
4140
with:

.github/workflows/win.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ jobs:
3636
run: dotnet-coverage collect "dotnet test" -f xml -o "coverage.xml"
3737
- name: Electronize
3838
run: electronize build /target win
39-
with:
40-
path: ./src/ArcadeManager
39+
working-directory: ./src/ArcadeManager
4140
- name: Upload binaries
4241
uses: actions/upload-artifact@v4
4342
with:

0 commit comments

Comments
 (0)