feat: updated workflows, package versions and configs #4
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: Build and release | |
on: push | |
concurrency: | |
group: build-and-release | |
cancel-in-progress: true | |
jobs: | |
release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest] | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Install Node.js and npm | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Install dependencies | |
run: npm install | |
- name: Build and release the app | |
run: npm package:publish | |
env: | |
GH_TOKEN: ${{ secrets.github_token }} |