datenel-react/.gitea/workflows/publishToNpm.yaml
Astrian Zheng 79256774e2
Some checks failed
Publish to npm / publish (push) Failing after 21s
ci: remove build step from npm publishing workflow
2025-02-20 11:15:46 +11:00

29 lines
530 B
YAML

name: Publish to npm
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org/'
- name: Install dependencies
run: npm install
- name: Publish to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}