Skip to content

Commit

Permalink
fix: 임시로 내 이름
Browse files Browse the repository at this point in the history
  • Loading branch information
lebmouse committed Jul 15, 2024
1 parent e899963 commit 04c7bce
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/package-tag-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,12 @@ jobs:
echo "BRANCH_SLUG=${BRANCH_SLUG}" >> $GITHUB_OUTPUT
echo "SHORT_SHA=${SHORT_SHA}" >> $GITHUB_OUTPUT
- name: Get user info
id: userinfo
uses: octokit/[email protected]
with:
route: GET /users/${{ github.actor }}
mediaType: '{"previews": ["mercy"]}'
env:
GITHUB_TOKEN: ${{ secrets.PUBLISH_GITHUB_TOKEN }}
- name: Publish Dev Tag
run: |
rm -rf src .husky .github .storybook .prettierrc .eslint.config.js pnpm-lock.yaml vercel.json vite.config.js
git config user.name "${{ fromJson(steps.userinfo.outputs.data).name }}"
git config user.email "${{ fromJson(steps.userinfo.outputs.data).email }}"
git config user.email "[email protected]""
git config user.name "lebmouse"
git add .
git commit -m "chore: release ${BRANCH_SLUG}-${SHORT_SHA}"
git tag -a '${BRANCH_SLUG}${SHORT_SHA}' -m 'Release ${BRANCH_SLUG}-${SHORT_SHA}'
Expand Down

0 comments on commit 04c7bce

Please sign in to comment.