Fixed camera package #11
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" | |
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 | |
- 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 }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps | |
asset_path: ./ReBeal-release.apk | |
asset_name: ReBeal-release.apk | |
asset_content_type: application/vnd.android.package-archive |