Merge pull request #10 from NaverPayDev/repo/9_update #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release packages | |
on: | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.ACTION_TOKEN }} | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22.x' | |
- name: Enable corepack | |
run: corepack enable | |
- name: setup pnpm and install dependencies | |
uses: pnpm/action-setup@v3 | |
with: | |
run_install: true | |
- name: Create Release Pull Request | |
id: changesets | |
uses: NaverPayDev/changeset-actions/publish@main | |
with: | |
github_token: ${{ secrets.ACTION_TOKEN }} | |
npm_token: ${{ secrets.NPM_TOKEN }} | |
git_username: npayfebot | |
git_email: npay.fe.bot@navercorp.com | |
publish_script: pnpm release | |
pr_title: '🚀 version changed packages' | |
commit_message: '📦 bump changed packages version' | |
create_github_release_tag: true | |
formatting_script: pnpm run markdownlint:fix | |
env: | |
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }} |