Skip to content

Commit

Permalink
chore: 배포 워크플로우 작성 (#40)
Browse files Browse the repository at this point in the history
Merge pull request #40 from daengdaengLee/issue-31

- NPM PUBLISH 워크플로우 초안 작성
  • Loading branch information
daengdaengLee authored Sep 6, 2023
2 parents e8eb90b + 70ecc00 commit 5b1622e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages

name: NPM PUBLISH

on:
workflow_dispatch:

jobs:
# @TODO 테스트 + 빌드 과정까지 문제 없는지 확인하고, 배포 + 다른 곳에서 설치까지 문제 없는지 확인하는 작업 분리
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm test
- run: npm run build
- run: npm publish --dry-run
# env:
# NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 comments on commit 5b1622e

Please sign in to comment.