Skip to content

Commit

Permalink
fix: fixed the copypasta from srs
Browse files Browse the repository at this point in the history
  • Loading branch information
meza committed Dec 3, 2023
1 parent 061108a commit f7507ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
if: ${{ matrix.java == '17' && runner.os == 'Linux' && (steps.get-next-version.outputs.new-release-published == 'true') }}
with:
version-type: ${{ env.TYPE }}
name: ServerRedstoneBlock v${{ steps.get-next-version.outputs.new-release-version }} Fabric for ${{ env.MC_VERSION }}
name: SoundsBeGone v${{ steps.get-next-version.outputs.new-release-version }} Fabric for ${{ env.MC_VERSION }}
version: ${{ steps.get-next-version.outputs.new-release-version }}
modrinth-id: ${{ vars.MODRINTH_ID }}
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
Expand All @@ -129,7 +129,7 @@ jobs:
with:
version-type: ${{ env.TYPE }}
version: ${{ steps.get-next-version.outputs.new-release-version }}
name: ServerRedstoneBlock v${{ steps.get-next-version.outputs.new-release-version }} Forge for ${{ env.MC_VERSION }}
name: SoundsBeGone v${{ steps.get-next-version.outputs.new-release-version }} Forge for ${{ env.MC_VERSION }}
modrinth-id: ${{ vars.MODRINTH_ID }}
modrinth-token: ${{ secrets.MODRINTH_TOKEN }}
curseforge-id: ${{ vars.CURSEFORGE_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
[
"@semantic-release/changelog",
{
"changelogTitle": "# Server Redstone Block Changelog",
"changelogTitle": "# Sounds Be Gone! Changelog",
"changelogFile": "CHANGELOG.md"
}
],
Expand Down
6 changes: 3 additions & 3 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
VERSION=$1

echo "Replacing version with ${VERSION}"
sed -e "s/VERSION/${VERSION}/" -i gradle.properties
sed -e "s/VERSION_REPL/${VERSION}/" -i src/main/java/gg/meza/SoundsBeGone.java
sed -e "s/POSTHOG_API_KEY_REPL/${POSTHOG_API_KEY}/" -i src/client/java/gg/meza/analytics/Analytics.java
sed -e "s/0.0-SNAPSHOT/${VERSION}/" -i gradle.properties
sed -e "s/VERSION_REPL/${VERSION}/" -i common/src/main/java/gg/meza/SoundsBeGone.java
sed -e "s/POSTHOG_API_KEY_REPL/${POSTHOG_API_KEY}/" -i common/src/client/java/gg/meza/analytics/Analytics.java

./gradlew build -x test # we've ran the tests earlier in the build

0 comments on commit f7507ff

Please sign in to comment.