Release nightly version #691
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release nightly version | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.3.1 | |
cache: yarn | |
- run: yarn | |
- run: yarn config set npmAuthToken ${{ secrets.NODE_AUTH_TOKEN }} | |
- run: yarn @bud release --tag nightly --registry https://registry.npmjs.org |