You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wattpad-deno/.woodpecker/.node.yml

24 lines
493 B

pipeline:
buildBuilder:
image: denoland/deno:debian
commands:
- deno compile -A buildNode.ts
- chmod a+x buildNode
build:
image: node:current-buster
commands:
- ./buildNode
deploy:
image: plugins/npm
settings:
username: ruthenic
token:
from_secret: NPM_API_KEY
folder: npm
when:
event: tag
depends_on:
- lint
- test