Skip to content

Commit

Permalink
feature(ci): #RE-1662 android internal build
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrique committed Apr 8, 2024
1 parent 544112b commit b7d95a7
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 38 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: Release branches
on:
push:
branches:
- 'ci/*'
- 'release/*'
- 'feature/*'
- 'fix/*'
- 'develop'
- 'main'

env:
BRANCH_NAME: ${{ github.ref_name }}
Expand Down
25 changes: 25 additions & 0 deletions .github/workflows/release-branches.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release branches
on:
push:
branches:
- 'ci/*'

env:
EAS_BUILD_PROFILE: development

jobs:
build-android:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v4
- name: 🛠️ Prepare node env
uses: ./.github/actions/setup-base
- name: 📦 Fetch dependencies
uses: ./.github/actions/dependencies
- name: ⚙️ Compile android
run: npx eas build --platform android --profile=development

concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
37 changes: 0 additions & 37 deletions .github/workflows/release-branches.yml.disabled

This file was deleted.

0 comments on commit b7d95a7

Please sign in to comment.