GitHub 작업을 사용하여 NPM에 패키지 게시
3384 단어 npmgithubtypescriptjavascript
npm publish
하기만 하면 됩니다(물론 이미 NPM 계정이 있고 터미널에서 인증을 받았다는 점을 고려하십시오). 하지만 새 릴리스를 만들 때마다 이 게시를 자동화하고 싶었습니다.이를 위해 다음 GitHub Action을 사용했습니다.
# File: .github/workflows/npm-publish.yml
# This workflow will publish a package to NPM when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Publish Package to npmjs
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
위의 YAML 파일(git 저장소의
.github/workflows/npm-publish.yml
디렉토리에 넣어야 함)을 읽으면 환경 변수NODE_AUTH_TOKEN
가 정의되어 있어야 합니다. NPM의 제어판에서 새 자동화 액세스 토큰을 만듭니다.Reference
이 문제에 관하여(GitHub 작업을 사용하여 NPM에 패키지 게시), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/douglasdemoura/use-github-actions-to-publish-your-package-on-npm-3o2c텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)