Publish API package to NPM #25
This file contains hidden or 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: | |
| workflow_dispatch | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: "Checkout code" | |
| uses: actions/checkout@v7 | |
| # Setup .npmrc file to publish to npm | |
| - name: Install root project dependencies | |
| run: npm ci | |
| - uses: actions/setup-node@v7 | |
| 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 }} |