release and publish #33
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: release and publish | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: release/latest | |
| fetch-depth: 0 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: initialize git user | |
| run: | | |
| git config --global user.email "[email protected]" | |
| git config --global user.name "shaadcode" | |
| - name: initialize the npm config | |
| run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN | |
| env: | |
| NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
| - name: Run release | |
| run: npm run release | |
| env: | |
| NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |