Update repository URL in package.json #5
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
| name: Deploy | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| id-token: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Extract tag version | |
| id: version | |
| run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
| - name: Update package.json version | |
| run: npm version ${{ steps.version.outputs.VERSION }} --no-git-tag-version --allow-same-version | |
| - run: npm ci | |
| - run: npm run build | |
| - name: Commit version update | |
| uses: test-room-7/action-update-file@v1 | |
| with: | |
| file-path: | | |
| package.json | |
| package-lock.json | |
| commit-msg: "chore: update package.json version to ${{ steps.version.outputs.VERSION }}" | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - run: npm publish |