Skip to content

Commit

Permalink
Setup git config name and email
Browse files Browse the repository at this point in the history
  • Loading branch information
mesaugat committed May 3, 2024
1 parent 8462118 commit 8835523
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
token: ${{ secrets.RIBBY_GITHUB_TOKEN }}

- name: Set git user
run: |
git config user.name "Ribby"
git config user.email "[email protected]"
- name: Setup ruby
uses: ruby/setup-ruby@v1
Expand All @@ -69,7 +76,6 @@ jobs:
run: |
gem install github_changelog_generator
- name: Setup node
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 8835523

Please sign in to comment.