Skip to content

Commit

Permalink
add steps for debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
jigar-f committed Jan 8, 2025
1 parent 27a58ed commit f7d19cb
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 16 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,21 @@ jobs:
strategy:
matrix:
include:
- os: macos-latest
platform: macos
- os: windows-latest
platform: windows
- os: ubuntu-latest-16-cores
platform: android
target: apk
if: matrix.platform == 'android'
- os: ubuntu-latest-16-cores
platform: android
target: aab
# - os: macos-latest
# platform: macos
# - os: windows-latest
# platform: windows
# - os: ubuntu-latest-16-cores
# platform: android
# target: apk
# if: matrix.platform == 'android'
# - os: ubuntu-latest-16-cores
# platform: android
# target: aab
- os: ubuntu-latest
platform: linux
- os: macos-latest
platform: ios
# - os: macos-latest
# platform: ios
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,14 @@ jobs:
with:
name: mapping.txt

- name: Debugging
run: |
echo "Debugging"
echo : ${{ needs.set-version.outputs.prefix }} == 'lantern-installer-preview' && (${{ needs.determine-platform.outputs.platform }} == 'android' || ${{ needs.determine-platform.outputs.platform }} == 'all')
echo : needs.set-version.outputs.prefix
echo needs.set-version.outputs.prefix == 'lantern-installer-preview' && (needs.determine-platform.outputs.platform == 'android' || needs.determine-platform.outputs.platform == 'all')
echo needs.set-version.outputs.prefix == 'lantern-installer' && (needs.determine-platform.outputs.platform == 'android' || needs.determine-platform.outputs.platform == 'all')
- name: Upload Android App bundle to Play Store (beta)
if: needs.set-version.outputs.prefix == 'lantern-installer-preview' && (needs.determine-platform.outputs.platform == 'android' || needs.determine-platform.outputs.platform == 'all')
run: echo "Uploading to Play Store beta"
Expand Down Expand Up @@ -205,9 +213,8 @@ jobs:
# packageName: org.getlantern.lantern
# releaseFiles: lantern-installer.aab
# track: production
# debugSymbols: ${{ github.workspace }}/build/outputs/debug-symbols/debug-symbols.zip
# mappingFile: ${{ github.workspace }}/build/app/outputs/mapping/prodPlay/mapping.txt

# debugSymbols: debug-symbols.zip
# mappingFile: mapping.txt
- name: Grant private modules access
run: git config --global url."https://${{ secrets.CI_PRIVATE_REPOS_GH_TOKEN }}:[email protected]/".insteadOf "https://github.com/"

Expand Down

0 comments on commit f7d19cb

Please sign in to comment.