Skip to content

Commit 27a7154

Browse files
committed
fix: update GitHub Actions workflows for testing and release
- Added GITHUB_TOKEN environment variable to the release workflow for authentication. - Renamed the test workflow from "PR Test" to "Test" for consistency.
1 parent 3865207 commit 27a7154

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444

4545
- name: Test
4646
run: pnpm test
47+
env:
48+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4749

4850
- name: Build
4951
run: pnpm build

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: PR Test
1+
name: Test
22
on:
33
workflow_dispatch:
44
pull_request:

0 commit comments

Comments
 (0)