[Feature] Pagination 컴포넌트 구현 (#159) #87
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" | |
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 | |
- name: Setup Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Cache Dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
run_install: false | |
- name: Install Dependency | |
run: pnpm install --no-frozen-lockfile | |
working-directory: packages/wow-ui | |
- name: Build packages | |
run: pnpm build | |
- name: Create .npmrc file | |
run: | | |
cat << EOF > "$HOME/.npmrc" | |
email=gdsc.hongik@gmail.com | |
//registry.npmjs.org/:_authToken=$NPM_TOKEN | |
EOF | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Create Release Pull Request | |
uses: changesets/action@v1 | |
with: | |
title: "[Chore] version packages" | |
commit: "chore: version packages" | |
version: pnpm changeset version | |
publish: pnpm changeset publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |