Skip to content

~ fixed : package.json was missing the repository #3

~ fixed : package.json was missing the repository

~ fixed : package.json was missing the repository #3

Workflow file for this run

# Doc : https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Publish package to GitHub Packages
on:
push:
branches:
- master
tags:
- 'v*.*.*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://npm.pkg.github.com'
- run: npm ci
- run: npm test
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}