comet/.woodpecker.yml

30 lines
613 B
YAML
Raw Normal View History

2023-08-02 17:05:46 +00:00
platform: linux/arm64
2022-09-25 21:04:31 +00:00
2023-08-02 17:05:46 +00:00
pipeline:
# - name: Install dependencies
# image: node:16-alpine
# commands:
# - yarn install
2022-09-25 21:04:31 +00:00
# TODO: setup linting
# - name: Check formatting
# image: node-pnpm:16-alpine
# commands:
# - pnpm format:check
# - name: Lint code
# image: node-pnpm:16-alpine
# commands:
# - pnpm lint
2023-08-02 17:05:46 +00:00
build:
image: node:16-alpine
commands:
- apk add git ca-certificates
2023-08-02 17:43:22 +00:00
- env CI=true npx eas-cli build --platform android --non-interactive --profile preview
2023-08-02 17:05:46 +00:00
secrets:
- eas_token
2023-08-02 17:30:41 +00:00
environment:
2023-08-02 17:39:03 +00:00
- CI=true
2022-09-25 21:04:31 +00:00
trigger:
event: [push]
branch: [main]