diff --git a/.github/workflows/package-tag-publish.yml b/.github/workflows/package-tag-publish.yml index 56104457..3e7e34f7 100644 --- a/.github/workflows/package-tag-publish.yml +++ b/.github/workflows/package-tag-publish.yml @@ -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/request-action@v2.x - 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 "youngwon@corca.ai"" + 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}'