diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 23bef72d7..b669771f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,18 +50,18 @@ jobs: strategy: matrix: include: -# - os: macos-latest -# 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: linux + - os: macos-latest + 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: linux - os: macos-latest platform: ios runs-on: ${{ matrix.os }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 13e478bed..310b953ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,8 +3,6 @@ name: Publish releases on: # Triggers the workflow on push when pushing to a version tag push: - branches: - - jigar/ios-8.0.3 tags: - '*lantern-*' workflow_run: @@ -69,7 +67,15 @@ jobs: vf = 'version-android-dev.txt' version = '9999.99.99-dev' else: - a = ref.strip().replace('refs/tags/lantern-', '') + tag = ref.strip() + if tag.startswith('refs/tags/android-lantern-'): + a = tag.replace('refs/tags/android-lantern-', '') + elif tag.startswith('refs/tags/ios-lantern-'): + a = tag.replace('refs/tags/ios-lantern-', '') + elif tag.startswith('refs/tags/desktop-lantern-'): + a = tag.replace('refs/tags/desktop-lantern-', '') + else: + a = tag.replace('refs/tags/lantern-', '') parts = a.split('-',1) suffix = parts[1] if len(parts)>1 else '' beta = 'beta' in suffix