|
1 | | -name: Release lazy-table-renderer |
| 1 | +# name: Release lazy-table-renderer |
2 | 2 |
|
3 | | -on: |
4 | | - push: |
5 | | - branches: |
6 | | - - release |
7 | | - paths: |
8 | | - - 'packages/lazy-table-renderer/**' |
| 3 | +# on: |
| 4 | +# push: |
| 5 | +# branches: |
| 6 | +# - release |
| 7 | +# paths: |
| 8 | +# - 'packages/lazy-table-renderer/**' |
9 | 9 |
|
10 | | -jobs: |
11 | | - release: |
12 | | - name: Release |
13 | | - runs-on: ubuntu-latest |
14 | | - permissions: |
15 | | - contents: write |
16 | | - issues: write |
17 | | - pull-requests: write |
18 | | - id-token: write |
19 | | - steps: |
20 | | - - name: Checkout |
21 | | - uses: actions/checkout@v4 |
22 | | - with: |
23 | | - fetch-depth: 0 |
| 10 | +# jobs: |
| 11 | +# release: |
| 12 | +# name: Release |
| 13 | +# runs-on: ubuntu-latest |
| 14 | +# permissions: |
| 15 | +# contents: write |
| 16 | +# issues: write |
| 17 | +# pull-requests: write |
| 18 | +# id-token: write |
| 19 | +# steps: |
| 20 | +# - name: Checkout |
| 21 | +# uses: actions/checkout@v4 |
| 22 | +# with: |
| 23 | +# fetch-depth: 0 |
24 | 24 |
|
25 | | - - name: Setup Node.js |
26 | | - uses: actions/setup-node@v3 |
27 | | - with: |
28 | | - node-version: '22.10.0' |
29 | | - registry-url: 'https://registry.npmjs.org/' |
| 25 | +# - name: Setup Node.js |
| 26 | +# uses: actions/setup-node@v3 |
| 27 | +# with: |
| 28 | +# node-version: '22.10.0' |
| 29 | +# registry-url: 'https://registry.npmjs.org/' |
30 | 30 |
|
31 | | - - name: Setup pnpm |
32 | | - uses: pnpm/action-setup@v2 |
33 | | - with: |
34 | | - version: latest |
| 31 | +# - name: Setup pnpm |
| 32 | +# uses: pnpm/action-setup@v2 |
| 33 | +# with: |
| 34 | +# version: latest |
35 | 35 |
|
36 | | - - name: Install dependencies |
37 | | - run: pnpm install |
| 36 | +# - name: Install dependencies |
| 37 | +# run: pnpm install |
38 | 38 |
|
39 | | - - name: Build |
40 | | - run: pnpm -F @vue-pivottable/lazy-table-renderer build |
41 | | - - name: Generate GitHub App Token |
42 | | - id: generate-token |
43 | | - uses: tibdex/github-app-token@v1 |
44 | | - with: |
45 | | - app_id: ${{ secrets.APP_ID }} |
46 | | - private_key: ${{ secrets.APP_PRIVATE_KEY }} |
47 | | - installation_id: ${{ secrets.APP_INSTALLATION_ID }} |
48 | | - - name: Release |
49 | | - env: |
50 | | - GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} |
51 | | - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
52 | | - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
53 | | - run: | |
54 | | - cd packages/lazy-table-renderer |
55 | | - pnpm dlx semantic-release |
| 39 | +# - name: Build |
| 40 | +# run: pnpm -F @vue-pivottable/lazy-table-renderer build |
| 41 | +# - name: Generate GitHub App Token |
| 42 | +# id: generate-token |
| 43 | +# uses: tibdex/github-app-token@v1 |
| 44 | +# with: |
| 45 | +# app_id: ${{ secrets.APP_ID }} |
| 46 | +# private_key: ${{ secrets.APP_PRIVATE_KEY }} |
| 47 | +# installation_id: ${{ secrets.APP_INSTALLATION_ID }} |
| 48 | +# - name: Release |
| 49 | +# env: |
| 50 | +# GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} |
| 51 | +# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
| 52 | +# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |
| 53 | +# run: | |
| 54 | +# cd packages/lazy-table-renderer |
| 55 | +# pnpm dlx semantic-release |
56 | 56 |
|
57 | | - - uses: actions/checkout@v4 |
58 | | - with: |
59 | | - ref: main |
60 | | - - name: Reset release branch |
61 | | - run: | |
62 | | - git fetch origin release:release |
63 | | - git reset --hard release |
64 | | - - name: Create Pull Request |
65 | | - if: success() |
66 | | - uses: peter-evans/create-pull-request@v5 |
67 | | - with: |
68 | | - branch: release-to-main |
69 | | - commit-message: 'chore: update version to latest release [skip ci]' |
70 | | - title: 'chore: update version to latest release [skip ci]' |
71 | | - body: | |
72 | | - 이 PR은 release 브랜치의 최신 버전 정보로 main 브랜치를 업데이트합니다. |
| 57 | +# - uses: actions/checkout@v4 |
| 58 | +# with: |
| 59 | +# ref: main |
| 60 | +# - name: Reset release branch |
| 61 | +# run: | |
| 62 | +# git fetch origin release:release |
| 63 | +# git reset --hard release |
| 64 | +# - name: Create Pull Request |
| 65 | +# if: success() |
| 66 | +# uses: peter-evans/create-pull-request@v5 |
| 67 | +# with: |
| 68 | +# branch: release-to-main |
| 69 | +# commit-message: 'chore: update version to latest release [skip ci]' |
| 70 | +# title: 'chore: update version to latest release [skip ci]' |
| 71 | +# body: | |
| 72 | +# 이 PR은 release 브랜치의 최신 버전 정보로 main 브랜치를 업데이트합니다. |
73 | 73 |
|
74 | | - - package.json 버전 업데이트 |
75 | | - - CHANGELOG.md 업데이트 |
| 74 | +# - package.json 버전 업데이트 |
| 75 | +# - CHANGELOG.md 업데이트 |
76 | 76 |
|
77 | | - 이 PR은 release 워크플로우에 의해 자동으로 생성되었습니다. |
| 77 | +# 이 PR은 release 워크플로우에 의해 자동으로 생성되었습니다. |
0 commit comments