File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff 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/
You can’t perform that action at this time.
0 commit comments