Bump form-data from 3.0.1 to 3.0.4 (#111) #105
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 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| npm-publish: | |
| name: npm-publish | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/[email protected] | |
| - name: Setup Node.js | |
| uses: actions/[email protected] | |
| with: | |
| node-version: 20.x | |
| - name: Build | |
| run: | | |
| npm install | |
| npm run build | |
| - name: Publish if version has been updated | |
| uses: pascalgn/[email protected] | |
| with: | |
| commit_pattern: "^Release (\\S+)" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |