Skip to content

Commit

Permalink
add git config
Browse files Browse the repository at this point in the history
  • Loading branch information
jalafel committed Dec 1, 2023
1 parent 82a19cc commit 38ad9e2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ jobs:
run: |
set -e
echo "Checkout the release branch"
git fetch && git checkout releases/v1
git checkout origin/releases/v1
echo "Bring latest changes from main"
git reset --hard origin/main
git reset --hard main
echo "Install dependencies"
npm install
echo "run build script"
npm run build
echo "Add the dist"
git config --global user.name 'Release Bot'
git config --global user.email '[email protected]'
git add .
echo "Commit"
git commit -m "v1"
Expand Down

0 comments on commit 38ad9e2

Please sign in to comment.