Publish @pptb/types to npm #4
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 @pptb/types to npm | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| branch: | |
| description: "Branch to checkout" | |
| required: true | |
| type: string | |
| tag: | |
| description: "npm tag (latest or beta)" | |
| required: true | |
| type: string | |
| version: | |
| description: "Version to publish for @pptb/types (must match app version)" | |
| required: false | |
| type: string | |
| workflow_call: | |
| inputs: | |
| branch: | |
| description: "Branch to checkout" | |
| required: true | |
| type: string | |
| tag: | |
| description: "npm tag (latest or beta)" | |
| required: true | |
| type: string | |
| version: | |
| description: "Version to publish for @pptb/types (must match app version)" | |
| required: false | |
| type: string | |
| permissions: | |
| contents: read | |
| id-token: write # Required for npm trusted publishing | |
| jobs: | |
| publish-types: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout branch | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ inputs.branch }} | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| registry-url: "https://registry.npmjs.org" | |
| - name: Get version | |
| id: version | |
| run: | | |
| if [ -n "${{ inputs.version }}" ]; then | |
| VERSION="${{ inputs.version }}" | |
| else | |
| VERSION=$(node -p "require('./package.json').version") | |
| fi | |
| echo "version=$VERSION" >> $GITHUB_OUTPUT | |
| echo "📦 Publishing @pptb/types version: $VERSION with tag: ${{ inputs.tag }}" | |
| - name: Sync @pptb/types version to app version | |
| working-directory: ./packages | |
| run: | | |
| npm version "${{ steps.version.outputs.version }}" --no-git-tag-version --allow-same-version | |
| - name: Publish @pptb/types to npm | |
| working-directory: ./packages | |
| run: | | |
| echo "Publishing @pptb/types@${{ steps.version.outputs.version }} with tag ${{ inputs.tag }} to npm..." | |
| npm publish --access public --tag ${{ inputs.tag }} --provenance | |
| env: | |
| NODE_AUTH_TOKEN: "" # Forces npm to use the OCDC token for authentication |