Skip to content

Commit

Permalink
Setup git client in publish
Browse files Browse the repository at this point in the history
  • Loading branch information
pboutin committed Sep 7, 2024
1 parent 5402c40 commit f78ba3f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@ jobs:
node-version: 18.10.0
cache: 'npm'

- name: Install
run: make install

- name: Setup Windows adapter
run: make setup-windows

Expand All @@ -42,7 +39,13 @@ jobs:
run: npm version minor

- name: Git push
run: git push --follow-tags
run: |
git config --global user.email "[email protected]"
git config --global user.name "Hel Munster"
git push --follow-tags
- name: Install
run: make install

- name: Forge publish
run: npx electron-forge publish

0 comments on commit f78ba3f

Please sign in to comment.