Skip to content

1.0.2

1.0.2 #2

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build-storejs:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: npm install
- name: Build Package
run: npm run build
- name: Install idoc Globally
run: npm install idoc@1 -g
- name: Publish to npm
run: npm publish --access public --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}