This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
fediverse-imagebot/.drone.yml
Sam Therapy 5f8e6767cf
All checks were successful
continuous-integration/drone/push Build is passing
Documentation + arm, maybe
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-03-16 20:49:18 +01:00

102 lines
1.5 KiB
YAML

---
kind: pipeline
type: docker
name: Build (amd64)
platform:
arch: amd64
steps:
- name: Get Dependencies
image: node
commands:
- yarn --check-cache
- name: Lint
image: node
depends_on:
- Get Dependencies
commands:
- yarn lint:ci
- name: Build
image: node
depends_on:
- Lint
commands:
- yarn build
- name: Package
image: node
depends_on:
- Lint
commands:
- yarn package
when:
event:
- tag
- name: Make Gitea Release
image: plugins/gitea-release
depends_on:
- Package
settings:
api_key:
from_secret: release_api_key
base_url: https://git.froth.zone
files:
- dist/imagebot-*
when:
event:
- tag
---
kind: pipeline
type: docker
name: Build (arm64)
platform:
arch: arm64
steps:
- name: Get Dependencies
image: node
commands:
- yarn --check-cache
- name: Lint
image: node
depends_on:
- Get Dependencies
commands:
- yarn lint:ci
- name: Build
image: node
depends_on:
- Lint
commands:
- yarn build
- name: Package
image: node
depends_on:
- Lint
commands:
- yarn package
when:
event:
- tag
- name: Make Gitea Release
image: plugins/gitea-release
depends_on:
- Package
settings:
api_key:
from_secret: release_api_key
base_url: https://git.froth.zone
files:
- dist/imagebot-*
when:
event:
- tag