Skip to content

change github action checkout path to prevent dependencies being load… #15

change github action checkout path to prevent dependencies being load…

change github action checkout path to prevent dependencies being load… #15

Workflow file for this run

name: Publish API package to NPM
on:
push:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
with:
path: resources/js/packages/api
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run build
- name: Publish Package
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}