Skip to content

Commit a8af92e

Browse files
committed
build: fixing release?
1 parent b732847 commit a8af92e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/cicd.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- "packages/**"
77
- "turbo.json"
88
- "package.json"
9+
- ".github/workflows/cicd.yml"
910
branches:
1011
- main
1112
- beta
@@ -17,6 +18,12 @@ on:
1718
paths:
1819
- "packages/**"
1920

21+
permissions:
22+
contents: write
23+
issues: write
24+
pull-requests: write
25+
id-token: write
26+
2027
jobs:
2128
CI:
2229
runs-on: ubuntu-latest
@@ -34,16 +41,10 @@ jobs:
3441
- run: pnpm run lint:lib
3542
- run: pnpm run test:lib
3643

37-
3844
CD:
3945
if: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/next'|| github.ref == 'refs/heads/experimental' || github.ref == 'refs/heads/4.x' || github.ref == 'refs/heads/7.x' }}
4046
runs-on: ubuntu-latest
4147
needs: [CI]
42-
permissions:
43-
contents: write
44-
issues: write
45-
pull-requests: write
46-
id-token: write
4748
steps:
4849
- uses: actions/checkout@v4
4950
with:

0 commit comments

Comments
 (0)