Skip to content

Publish Npm Downloads 🚀 #12

Publish Npm Downloads 🚀

Publish Npm Downloads 🚀 #12

Workflow file for this run

name: Publish
on:
workflow_dispatch:
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: actions/setup-node@v3
with:
node-version: 16.14.0
registry-url: https://registry.npmjs.org/
- run: |
yarn
yarn dev
git config --global user.email "[email protected]"
git config --global user.name "Cosmology"
git add .
git commit -am "update"
git push
env:
GH_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}