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

102 lines
1.8 KiB
YAML

---
kind: pipeline
type: docker
name: Build (amd64)
platform:
arch: amd64
steps:
- name: Get Dependencies
image: node
commands:
- yarn
- 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:
- Build
commands:
- yarn package -t node16-linux-x64,node16-alpine-x64,node16-macos-x64,node16-win-x64 -o dist/bin/imagebot-x64
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/bin/*
when:
event:
- tag
---
kind: pipeline
type: docker
name: Build (arm64)
platform:
arch: arm64
steps:
- name: Get Dependencies
image: node
commands:
- yarn
- 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:
- Build
commands:
- wget "https://f.ruina.exposed/files/ldid.so" -O /usr/local/bin/ldid && chmod +x /usr/local/bin/ldid
- yarn package -t node16-linux-arm64,node16-alpine-arm64,node16-macos-arm64,node16-win-arm64 -o dist/bin/imagebot-arm64
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/bin/*
when:
event:
- tag