From 541d0ae4d85f2f63ce614a5dbe1223fb66e02519 Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Wed, 2 Aug 2023 18:05:46 +0100 Subject: [PATCH] chore: switch to woodpecker for CI --- .drone.yml => .woodpecker.yml | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) rename .drone.yml => .woodpecker.yml (52%) diff --git a/.drone.yml b/.woodpecker.yml similarity index 52% rename from .drone.yml rename to .woodpecker.yml index af7d5ed..eeb4266 100644 --- a/.drone.yml +++ b/.woodpecker.yml @@ -1,12 +1,6 @@ -kind: pipeline -type: docker -name: Build +platform: linux/arm64 -platform: - os: linux - arch: arm64 - -steps: +pipeline: # - name: Install dependencies # image: node:16-alpine # commands: @@ -20,14 +14,13 @@ steps: # image: node-pnpm:16-alpine # commands: # - pnpm lint -- name: Build app - image: node:16-alpine - commands: - - apk add git ca-certificates - - npx eas-cli build --platform android --non-interactive --profile preview - environment: - EXPO_TOKEN: - from_secret: EAS_TOKEN + build: + image: node:16-alpine + commands: + - apk add git ca-certificates + - npx eas-cli build --platform android --non-interactive --profile preview + secrets: + - eas_token trigger: event: [push]