Skip to content

fix: Node.jsのセットアップとnpm installを忘れていたので追加 #2

fix: Node.jsのセットアップとnpm installを忘れていたので追加

fix: Node.jsのセットアップとnpm installを忘れていたので追加 #2

Workflow file for this run

name: Upload package to npmjs.com
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
environment: npmjs
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
scope: '@coconmap'
- name: Install dependencies
run: npm install
- name: Publish package
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_REGISTRY_TOKEN }}