Release - Current Stable and Dev #361
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 - Current Stable and Dev | |
on: | |
schedule: | |
- cron: "0 12 * * *" | |
push: | |
branches: | |
- master | |
jobs: | |
latest: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js 14.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 14.x | |
- name: Install NPM Dependencies | |
run: npm ci | |
- name: Stable - Build | |
run: npm run build | |
- name: Stable - Release | |
run: npm run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Dev - Build | |
run: npm run build | |
env: | |
BUILD_TYPE: dev | |
- name: Dev - Release | |
run: npm run release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} |