From 5b07591e32167199fbf143632282c6d1b56c4ddb Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Sun, 17 Mar 2024 02:25:01 +0000 Subject: [PATCH] feat(ci): set up new CI --- .forgejo/workflows/publish.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .forgejo/workflows/publish.yml diff --git a/.forgejo/workflows/publish.yml b/.forgejo/workflows/publish.yml new file mode 100644 index 0000000..380447d --- /dev/null +++ b/.forgejo/workflows/publish.yml @@ -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 }}