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.
js-feditoken/.drone.yml
Sam Therapy 13e904ee71
Some checks failed
continuous-integration/drone Build is failing
Make token generator seperate
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-02-16 08:56:46 -06:00

42 lines
562 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: lint
image: node
commands:
- yarn
- yarn lint
- name: build
image: node
commands:
- yarn build
- name: test
image: node
commands:
- yarn test
- name: package
image: node
commands:
- yarn package
when:
event:
- tag
- name: Release
image: plugins/gitea-release
depends_on:
- package
settings:
api_key:
from_secret: release_api_key
base_url: https://git.froth.zone
files:
- dist/feditoken-*
checksum:
- md5
- sha1