Skip to content

release and publish #25

release and publish

release and publish #25

Workflow file for this run

name: release and publish
on:
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3
with:
ref: main
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}}