Skip to content

Commit

Permalink
deploy 워크플로우 Github Action 봇 명시적 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
love1ace committed Sep 20, 2024
1 parent 0a01825 commit 21f72b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Taskl Publish
name: Node.js Package Publish

on:
push:
Expand All @@ -25,12 +25,12 @@ jobs:
- name: Authenticate to npm
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc

# 4. 패치 버전 자동 증가
# 4. Git 사용자 정보 설정 및 버전 자동 증가
- name: Bump version and push tag
run: |
npm version patch # 패치 버전 0.0.1 증가
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
npm version patch # 패치 버전 0.0.1 증가
git push origin main --tags
# 5. npm 설치
Expand Down

0 comments on commit 21f72b5

Please sign in to comment.