default:
    image: ubuntu:latest

build:
    only:
        - schedules
        - web
    script:
        - ./build.sh

npm:
    image: node:latest
    id_tokens:
      NPM_ID_TOKEN:
        aud: "npm:registry.npmjs.org"
    only:
       - tags
    script:
        - npm publish
