Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Nov 17, 2024
1 parent 8263a8b commit 451eeec
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
echo "SHORT_SHA=$SHORT_SHA" >> $GITHUB_OUTPUT
build-android:
if: false
needs: job-common
runs-on: ubuntu-latest
timeout-minutes: 60
Expand Down Expand Up @@ -100,7 +101,7 @@ jobs:
- name: assemble android foss release artifact
run: ./gradlew androidApp:assembleFossRelease

- name: assemble gms release artifact
- name: assemble android gms release bundle artifact
run: ./gradlew androidApp:bundleGmsRelease

- name: upload artifacts to outputs
Expand Down Expand Up @@ -291,14 +292,19 @@ jobs:
- name: assemble macos dmg artifact
run: ./gradlew :desktopApp:packageDmg

- name: find dmg file
run: find . -name "*.dmg"
- name: upload binaries
uses: actions/upload-artifact@v4
with:
path: desktopApp/build/compose/binaries/main/**

- name: upload artifacts to outputs
- name: "upload .dmg"
uses: actions/upload-artifact@v4
with:
path: |
desktopApp/build/compose/binaries/main/dmg
name: app-mac-silicon
path: desktopApp/build/compose/binaries/main/dmg/*.dmg

- name: find dmg file
run: find . -name "*.dmg"

- name: expose version name
id: version_name
Expand Down

0 comments on commit 451eeec

Please sign in to comment.