mirror of
https://github.com/MultiMote/niimbluelib.git
synced 2025-03-16 19:41:01 +03:00
33 lines
691 B
YAML
33 lines
691 B
YAML
|
name: Publish Package to npmjs
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- npm-test
|
||
|
|
||
|
jobs:
|
||
|
build-and-publish:
|
||
|
runs-on: ubuntu-latest
|
||
|
permissions:
|
||
|
contents: read
|
||
|
id-token: write
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Setup Node
|
||
|
uses: actions/setup-node@v4
|
||
|
with:
|
||
|
node-version: '20.x'
|
||
|
registry-url: 'https://registry.npmjs.org'
|
||
|
scope: '@mmote'
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: yarn install
|
||
|
|
||
|
- name: Build
|
||
|
run: yarn build
|
||
|
|
||
|
- name: Publish
|
||
|
run: npm publish --provenance --access public
|
||
|
env:
|
||
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|