Skip to content

Commit

Permalink
8.0.0 release minus Android
Browse files Browse the repository at this point in the history
  • Loading branch information
atavism committed Dec 10, 2024
1 parent 090ef69 commit 6b8c300
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ jobs:
platform: macos
- os: windows-latest
platform: windows
- os: ubuntu-latest
platform: android
target: apk
- os: ubuntu-latest
platform: android
target: aab
# - os: ubuntu-latest
# platform: android
# target: apk
# - os: ubuntu-latest
# platform: android
# target: aab
- os: ubuntu-latest
platform: linux
# - os: macos-latest
Expand Down
29 changes: 14 additions & 15 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,15 +131,15 @@ jobs:
with:
name: windows64-installer-signed

- name: Download the apk build output
uses: actions/download-artifact@v4
with:
name: android-apk-build
# - name: Download the apk build output
# uses: actions/download-artifact@v4
# with:
# name: android-apk-build

- name: Download the aab build output
uses: actions/download-artifact@v4
with:
name: android-aab-build
# - name: Download the aab build output
# uses: actions/download-artifact@v4
# with:
# name: android-aab-build

# - name: Download the IPA
# uses: actions/download-artifact@v4
Expand Down Expand Up @@ -181,23 +181,22 @@ jobs:

- name: Rename builds
run: |
diff lantern-installer.apk ${{ env.prefix }}.apk || mv -f lantern-installer.apk ${{ env.prefix }}.apk
diff lantern-installer.aab ${{ env.prefix }}.aab || mv -f lantern-installer.aab ${{ env.prefix }}.aab
# diff lantern-installer.apk ${{ env.prefix }}.apk || mv -f lantern-installer.apk ${{ env.prefix }}.apk
# diff lantern-installer.aab ${{ env.prefix }}.aab || mv -f lantern-installer.aab ${{ env.prefix }}.aab
mv -f lantern-installer-x64.deb ${{ env.prefix }}-64-bit.deb
mv -f lantern-installer-x64.rpm ${{ env.prefix }}.rpm
mv -f lantern-installer.dmg ${{ env.prefix }}.dmg
diff lantern-installer-x64.exe ${{ env.prefix }}-64-bit.exe || mv -f lantern-installer-x64.exe ${{ env.prefix }}-64-bit.exe
mv -f Lantern.ipa ${{ env.prefix }}.ipa
# mv -f Lantern.ipa ${{ env.prefix }}.ipa
- name: Prepare sha256 sums
run: |
shasum -a 256 ${{ env.prefix }}.apk | cut -d " " -f 1 > ${{ env.prefix }}.apk.sha256
shasum -a 256 ${{ env.prefix }}.aab | cut -d " " -f 1 > ${{ env.prefix }}.aab.sha256
# shasum -a 256 ${{ env.prefix }}.apk | cut -d " " -f 1 > ${{ env.prefix }}.apk.sha256
# shasum -a 256 ${{ env.prefix }}.aab | cut -d " " -f 1 > ${{ env.prefix }}.aab.sha256
shasum -a 256 ${{ env.prefix }}-mac.dmg | cut -d " " -f 1 > ${{ env.prefix }}-mac.dmg.sha256
shasum -a 256 ${{ env.prefix }}-mac_arm.dmg | cut -d " " -f 1 > ${{ env.prefix }}-mac_arm.dmg.sha256
shasum -a 256 ${{ env.prefix }}-x64.exe | cut -d " " -f 1 > ${{ env.prefix }}-x64.exe.sha256
shasum -a 256 ${{ env.prefix }}-64-bit.deb | cut -d " " -f 1 > ${{ env.prefix }}-64-bit.deb.sha256
shasum -a 256 ${{ env.prefix }}.ipa | cut -d " " -f 1 > ${{ env.prefix }}.ipa.sha256
# shasum -a 256 ${{ env.prefix }}.ipa | cut -d " " -f 1 > ${{ env.prefix }}.ipa.sha256
- name: Commit
run: |
Expand Down

0 comments on commit 6b8c300

Please sign in to comment.