Skip to content

burhanyilmaz is testing out Github Actions πŸš€ #7

burhanyilmaz is testing out Github Actions πŸš€

burhanyilmaz is testing out Github Actions πŸš€ #7

Workflow file for this run

name: WoMob Github Action
run-name: ${{ github.actor }} is testing out Github Actions πŸš€
on: [push]
jobs:
Create-Upload:
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v3
- name: πŸ— Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: bun
- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: πŸš€ Install Packages
run: |
bun install
- name: πŸ§ͺ Run format and lint
run: |
bun format && bun validate
- name: Build apk
run: |
bun build:android:local
- name: πŸ₯³ Upload APK File
uses: actions/upload-artifact@v3
with:
name: womob-apk
path: ${{ github.workspace }}/*.apk
- run: echo "πŸ’‘ The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "πŸ–₯️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."