Fixed notifications (probably) #20
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" | |
- 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 | |
- 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: π Build | |
run: eas build --profile preview --non-interactive --platform android --local --output=./ReBeal-release.apk --clear-cache | |
- 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 |