Fixed CI probably #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
tags: | |
- "v*" | |
permissions: | |
contents: write | |
name: Build and release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: π Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "14" | |
cache: "yarn" | |
cache-dependency-path: "yarn.lock" | |
- uses: mskelton/setup-yarn@v1 | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: "17" # Change to 11 if you encounter compatibility issues | |
distribution: "zulu" | |
- name: π Setup EAS | |
uses: expo/expo-github-action@v8 | |
with: | |
eas-version: latest | |
token: ${{ secrets.EXPO_TOKEN }} | |
- name: π¦ Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: π Decode google-services.json | |
run: | | |
echo "${{ secrets.ENCODED_GOOGLE_SERVICES }}" | base64 --decode > google-services.json | |
echo "${{ secrets.ENCODED_CREDS }}" | base64 --decode > creds.ts | |
ls -la | |
- name: πββοΈ Prebuild | |
run: | | |
yarn expo prebuild --platform android | |
cp assets/images/icon.png android/app/src/main/res/mipmap-hdpi/ic_launcher.png | |
mkdir -p android/app/src/main/res/raw | |
cp assets/sounds/notification.wav android/app/src/main/res/raw/notification.wav | |
- name: π Build | |
run: | | |
eas build --profile preview --non-interactive --platform android --local --output=./ReBeal-release.apk | |
ls -la ./** | |
- name: π¦ Upload APK | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ReBeal-release.apk | |
path: ./ReBeal-release.apk | |
- name: π Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref_name }} | |
release_name: ReBeal ${{ github.ref_name }} | |
- name: π Release | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./ReBeal-release.apk | |
asset_name: ReBeal-release.apk | |
asset_content_type: application/vnd.android.package-archive |