chore: bump api package version #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
# Setup .npmrc file to publish to npm | |
- name: Install root project dependencies | |
run: npm ci | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install dependencies | |
run: npm ci | |
working-directory: ./resources/js/packages/api | |
- name: Build package | |
run: npm run build | |
working-directory: ./resources/js/packages/api | |
- name: Publish Package | |
run: npm publish --provenance --access public | |
working-directory: ./resources/js/packages/api | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |