Skip to content

Commit

Permalink
ci(release): fix git not being configured
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuasing committed Oct 5, 2023
1 parent 32c158a commit 01964df
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ jobs:
- name: "Prepare for publish"
run: |
# Configure Git
git config --global user.name "hypera-bot"
git config --global user.email "[email protected]"
# Indra only publishes release versions if HEAD is tagged
git tag -a "v$VERSION" HEAD -m "v$VERSION"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ plugins {
}

group = "dev.hypera"
version = "0.20.0-SNAPSHOT"
version = "0.19.0"
description = "Cross-platform Minecraft plugin framework"

indraSonatype {
Expand Down

0 comments on commit 01964df

Please sign in to comment.