Skip to content

Commit

Permalink
specify os when building for android
Browse files Browse the repository at this point in the history
  • Loading branch information
hahn-kev committed Dec 19, 2024
1 parent 0705281 commit c6d8fb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/fw-lite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ jobs:
- name: Dotnet build
working-directory: backend/FwLite/FwLiteDesktop
run: |
dotnet build --configuration Release
dotnet build
- name: Dotnet test
run: dotnet test FwLiteOnly.slnf --configuration Release --logger GitHubActions
run: dotnet test FwLiteOnly.slnf --logger GitHubActions

- name: Upload viewer artifacts
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:

- name: Publish Android
working-directory: backend/FwLite/FwLiteDesktop
run: dotnet publish -f net9.0-android --artifacts-path ../artifacts -p:ApplicationDisplayVersion=${{ needs.build-and-test.outputs.semver-version }} -p:InformationalVersion=${{ needs.build-and-test.outputs.version }}
run: dotnet publish -f net9.0-android --os android --artifacts-path ../artifacts -p:ApplicationDisplayVersion=${{ needs.build-and-test.outputs.semver-version }} -p:InformationalVersion=${{ needs.build-and-test.outputs.version }}

- name: Upload FWLite App artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit c6d8fb9

Please sign in to comment.