feat(ci): set up new CI
This commit is contained in:
parent
e7220db4a7
commit
5b07591e32
1 changed files with 18 additions and 0 deletions
18
.forgejo/workflows/publish.yml
Normal file
18
.forgejo/workflows/publish.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Build release on expo.dev
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ['main']
|
||||
|
||||
jobs:
|
||||
expo-build:
|
||||
name: Expo build
|
||||
runs-on: docker
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
- name: Trigger eas build
|
||||
run: "npx eas-cli build --platform android --non-interactive --profile preview"
|
||||
env:
|
||||
EXPO_TOKEN: ${{ secrets.EXPO_TOKEN }}
|
Loading…
Reference in a new issue