Files
codexbar-mobile/.gitea/workflows/build-android.yml
T
space 99a1587ba0
CodexBar Mobile Build / build-android (push) Failing after 1m10s
CodexBar Mobile Build / release (push) Has been skipped
ci: adopt local EAS build pattern with Android SDK, artifact upload, and release
2026-06-24 16:48:13 +02:00

91 lines
2.2 KiB
YAML

name: CodexBar Mobile Build
on:
push:
branches:
- main
paths:
- '**/*.ts'
- '**/*.tsx'
- '**/*.js'
- '**/*.json'
- '.gitea/workflows/**'
jobs:
build-android:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v2
- name: 🏗 Setup Node
uses: actions/setup-node@v2
with:
node-version: 22
- name: 🏗 Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: 🏗 Setup Android SDK
uses: android-actions/setup-android@v3
- name: 🏗 Setup Expo and EAS
uses: expo/expo-github-action@v8
with:
token: ${{ secrets.EXPO_TOKEN }}
eas-version: latest
packager: npm
- name: 📦 Install dependencies
run: npm ci --legacy-peer-deps
- name: 👷 Build app
run: |
eas build --local \
--non-interactive \
--output=./app-build \
--platform=android \
--profile=preview
- name: 📝 Rename build to APK
run: mv app-build codexbar-release.apk
- name: 📤 Upload build artifact
uses: actions/upload-artifact@v3
with:
name: codexbar-android-preview-build
path: codexbar-release.apk
if-no-files-found: error
release:
runs-on: ubuntu-latest
needs: [build-android]
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v2
- name: 📥 Download Android artifact
uses: actions/download-artifact@v3
with:
name: codexbar-android-preview-build
- name: 🏷 Create tag
run: |
TAG="codexbar-build-$(git rev-parse --short HEAD)"
git tag "$TAG"
git push origin "$TAG"
echo "RELEASE_TAG=$TAG" >> $GITHUB_ENV
- name: 🚀 Create release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ env.RELEASE_TAG }}
name: ${{ env.RELEASE_TAG }}
files: codexbar-release.apk
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}