[🚀 Release Nightly] v2.0.1-nightly.545 #550
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: Try Release | |
on: | |
push: | |
branches: | |
- nightly | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GIT_TOKEN }} | |
ref: nightly | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "16.x" | |
registry-url: "https://registry.npmjs.org" | |
- run: git config --global user.name 'Patryk Rzucidlo (@PTKDev)' | |
- run: git config --global user.email '[email protected]' | |
- run: npm ci | |
- run: npm run release |