Remove Australia from README region list; bump to 0.1.3 #3
Workflow file for this run
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
| # Publishes @docspring/n8n-nodes-docspring to npm on every v*.*.* tag push, | |
| # WITH an npm provenance attestation — required by n8n for verified community | |
| # nodes (from 2026-05-01, nodes must be published via GitHub Actions with | |
| # provenance, not from a local machine). | |
| # | |
| # Auth: OIDC "Trusted Publishing" (recommended, no stored secret) — configure | |
| # the trusted publisher once on npmjs.com (package → Settings → Publishing | |
| # access → Trusted Publishers → GitHub Actions, workflow "publish.yml"). | |
| # Fallback: set an NPM_TOKEN repo secret and it will be used instead. | |
| name: Publish | |
| on: | |
| push: | |
| tags: | |
| - 'v*.*.*' | |
| jobs: | |
| publish: | |
| name: Publish to npm (with provenance) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write # mint the OIDC token for the provenance attestation | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| registry-url: 'https://registry.npmjs.org' | |
| cache: 'npm' | |
| - name: Upgrade npm (OIDC trusted publishing needs npm >= 11.5) | |
| run: npm install -g npm@latest | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Publish with provenance | |
| run: | | |
| if [ -n "$NPM_TOKEN" ]; then npm config set //registry.npmjs.org/:_authToken "$NPM_TOKEN"; fi | |
| npm publish --provenance --access public | |
| env: | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |