node-appwrite
Version:
Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API
25 lines (24 loc) • 521 B
YAML
language: node_js
node_js:
- "14.16"
jobs:
include:
- stage: NPM RC Release
if: tag == *-rc*
node_js: "14.16"
script: echo "Deploying RC to NPM..."
deploy:
provider: npm
email: $NPM_EMAIL
api_key: $NPM_API_KEY
tag: next
- stage: NPM Release
if: tag != *-rc*
node_js: "14.16"
script: echo "Deploying to NPM..."
deploy:
provider: npm
email: $NPM_EMAIL
api_key: $NPM_API_KEY
on:
tags: true