Skip to content

Commit 416d02c

Browse files
committed
artifacts
1 parent 8c95ccc commit 416d02c

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,24 @@ jobs:
6060
if: ${{ (runner.os == 'macOS') }}
6161
run: dotnet publish -f net9.0-maccatalyst -p:CreatePackage=false
6262

63-
- name: Publish iOS - Simulator
63+
- name: Build for iOS - Simulator
6464
if: ${{ (runner.os == 'macOS') }}
65-
run: dotnet publish -f net9.0-ios -r iossimulator-x64
65+
# Can't 'publish' for a simulator
66+
run: dotnet build -c Release -f net9.0-ios -r iossimulator-x64
6667

68+
# Need signing set up
6769
# - name: Publish iOS
6870
# if: ${{ (runner.os == 'macOS') }}
69-
# run: dotnet publish -f net9.0-ios
71+
# run: dotnet publish -f net9.0-ios
72+
73+
- uses: actions/upload-artifact@v4
74+
if: ${{ (runner.os == 'Windows') }}
75+
with:
76+
name: EmpowerPlant-Windows
77+
path: bin\
78+
79+
- uses: actions/upload-artifact@v4
80+
if: ${{ (runner.os == 'macOS') }}
81+
with:
82+
name: EmpowerPlant-Mac
83+
path: bin/

0 commit comments

Comments
 (0)