We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5894cd commit 15b6ec9Copy full SHA for 15b6ec9
.github/workflows/release.yml
@@ -9,9 +9,16 @@ jobs:
9
release:
10
name: Release
11
runs-on: ubuntu-latest
12
+ # https://docs.github.com/ko/actions/writing-workflows/workflow-syntax-for-github-actions#permissions
13
+ permissions:
14
+ contents: write
15
+ packages: write
16
+ pull-requests: write
17
steps:
18
- name: Checkout Repo
19
uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
23
- name: Setup Node.js
24
uses: actions/setup-node@v3
@@ -25,6 +32,8 @@ jobs:
25
32
with:
26
33
commit: "Chore: Version Packages"
27
34
publish: npm run publish
35
+ setupGitUser: true
36
+ createGithubReleases: true
28
37
env:
29
38
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
39
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments