12345678910111213141516171819202122232425262728293031 |
- name: Publish Nightly
- on:
- schedule:
- - cron: '0 8 * * *'
- workflow_dispatch: {}
- repository_dispatch:
- types: publish-nightly
- jobs:
- build:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [12.x]
- steps:
- - uses: actions/checkout@v2
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- registry-url: https://registry.npmjs.org/
- - name: Setup and publish nightly
- run: |
- npm ci
- npm run release
- npm run prepare:nightly
- npm publish
- env:
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|