Skip to content

Commit a1c7531

Browse files
committed
Update package.json.
1 parent f208383 commit a1c7531

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/release.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,20 +21,24 @@ jobs:
2121
steps:
2222
- name: Checkout Code
2323
uses: actions/checkout@v4
24+
2425
- uses: actions/setup-node@v4
2526
with:
2627
node-version: '18.x'
28+
2729
- name: Install Dependencies
2830
run: npm install
31+
2932
- name: Compile
3033
run: |
3134
npm i -g @vercel/ncc
3235
ncc build index.js --license licenses.txt
36+
3337
- name: Configure git
34-
- id: config_git
35-
- run : |
38+
run : |
3639
git config user.name 'github-actions[bot]'
3740
git config user.email 'github-actions[bot]@users.noreply.github.com'
41+
3842
- name: Compose Release Tag
3943
id: release_tag
4044
run: |
@@ -51,6 +55,7 @@ jobs:
5155
echo "TAG: $TAG"
5256
echo "TAG=$TAG" >> $GITHUB_OUTPUT
5357
echo "SHA=$SHA" >> $GITHUB_OUTPUT
58+
5459
- name: Commit Dist Files
5560
id: commit_dist_files
5661
run: |

0 commit comments

Comments
 (0)