Skip to content

Commit

Permalink
Merge branch 'main' into bad_apple
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Lesches committed Feb 21, 2024
2 parents 5f674a0 + 9d4f37a commit 40a4bc8
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/msix.yml → .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Windows app MSIX
name: Publish Windows and Android apps

# Builds a Windows App Installer (.msix) for the Dashboard
#
Expand All @@ -22,6 +22,11 @@ jobs:
- name: Clone repository
uses: actions/checkout@v3

- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: '12.x'

- name: Load certificate
run: |
echo "${{ env.windows_certificate }}" > windows_certificate_decoded.txt
Expand All @@ -40,10 +45,15 @@ jobs:
dart analyze
dart run msix:create
- name: Build APK
run: flutter build apk

- name: Create Release
uses: softprops/[email protected]
with:
files: build/windows/x64/runner/Release/Dashboard.msix
files: |
build/windows/x64/runner/Release/Dashboard.msix
build/app/outputs/apk/release/app-release.apk
name: ${{ github.ref_name }}
generate_release_notes: true
fail_on_unmatched_files: true

0 comments on commit 40a4bc8

Please sign in to comment.