feat: setup GitHub CI

This commit is contained in:
Jixun 2021-12-19 18:28:48 +00:00
parent e2bed7e4ea
commit 3737db8c6d
1 changed files with 24 additions and 0 deletions

24
.github/workflows/build_and_publish.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Build and Publish
on: [push, pull_request]
jobs:
build_and_publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v2
- name: 🛠️ Configure Registry
uses: actions/setup-node@v2
with:
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'
scope: '@unlock-music'
- name: 📦 Install Dependencies
run: npm ci
- name: 🚀 Publish Package
run: npm publish
if: startsWith(github.ref, 'refs/tags/v')
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}