docs: Add CLAUDE.md with project development guidelines #43
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: "AutoPublish" | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| jobs: | |
| auto-publish: | |
| name: "AutoPublish on master" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout source code" | |
| uses: "actions/checkout@v3" | |
| - name: "Automated Release" | |
| uses: "phips28/gh-action-bump-version@master" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '16' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: "Install dependencies" | |
| run: npm install | |
| - run: npm publish --access public | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |