Skip to content

Commit

Permalink
chore(release): setup git config user and permission to push
Browse files Browse the repository at this point in the history
  • Loading branch information
tinesoft committed Mar 24, 2024
1 parent f6345c0 commit c0f8688
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
release:
name: Build, Release & Publish
permissions:
contents: read
contents: write
id-token: write # needed for provenance data generation
runs-on: ubuntu-latest
steps:
Expand All @@ -25,6 +25,11 @@ jobs:
fetch-depth: 0
fetch-tags: true

- name: Setup Git
run: |
git config --global user.email [email protected]
git config --global user.name "Semantic Release CI"
- name: Install node, pnpm, and dependencies
uses: ./.github/actions/install-dependencies

Expand Down

0 comments on commit c0f8688

Please sign in to comment.