We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45bc72b commit 7ba29dbCopy full SHA for 7ba29db
.github/workflows/release-automated.yml
@@ -29,14 +29,18 @@ jobs:
29
uses: actions/checkout@v6
30
with:
31
fetch-depth: 0
32
- persist-credentials: false
+ token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
33
- name: Setup Node.js
34
uses: actions/setup-node@v4
35
36
node-version: 24
37
cache: 'npm'
38
- name: Install dependencies
39
run: npm ci
40
+ - name: Configure git credentials
41
+ run: |
42
+ git config --global user.name "github-actions[bot]"
43
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
44
- name: Run semantic-release for dart package
45
run: npx semantic-release
46
working-directory: packages/dart
0 commit comments