File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -37,18 +37,18 @@ jobs:
3737 dotnet workload install android --ignore-failed-sources
3838 dotnet workload install maui --ignore-failed-sources
3939
40+ - name : Create keystore
41+ shell : bash
42+ run : echo "${{ secrets.ANDROID_SIGNING_KEYSTORE }}" | base64 --decode > PeriodTracker.keystore
43+
4044 - name : Build app
41- run : dotnet build -c Release
45+ run : dotnet build -c Release -p:AndroidSigningStorePass="${{ secrets.ANDROID_SIGNING_PASSWORD }}" -p:AndroidSigningKeyPass="${{ secrets.ANDROID_SIGNING_PASSWORD }}"
4246
4347 - name : Run tests
4448 run : dotnet test -c Release --no-build -l:"console;verbosity=normal"
4549
46- - name : Create keystore
47- shell : bash
48- run : echo "${{ secrets.ANDROID_SIGNING_KEYSTORE }}" | base64 --decode > PeriodTracker.keystore
49-
5050 - name : Publish MAUI Android
51- run : dotnet publish -f net8.0-android --no-build PeriodTracker.sln -p:AndroidSigningStorePass="${{ secrets.ANDROID_SIGNING_PASSWORD }}" -p:AndroidSigningKeyPass="${{ secrets.ANDROID_SIGNING_PASSWORD }}"
51+ run : dotnet publish -f net8.0-android --no-build
5252
5353 - name : Save asset name
5454 id : save_asset_name
You can’t perform that action at this time.
0 commit comments