diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/renovate.json | 3 | ||||
| -rw-r--r-- | .github/workflows/release.yaml | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/.github/renovate.json b/.github/renovate.json index fc2b67c..55f60b6 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -2,5 +2,8 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "github>m1sk9/renovate-config" + ], + "addLabels": [ + "Type: dependencies" ] } diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ab2374e..d130b85 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -96,11 +96,12 @@ jobs: TAG_NAME=${GITHUB_REF#refs/tags/} VERSION=${{ needs.validate.outputs.version }} JAR_NAME=${{ needs.validate.outputs.jar_name }} + VERSION_ANCHOR=$(echo "$VERSION" | tr -d '.') gh release create "$TAG_NAME" \ "$JAR_NAME" \ --title "$TAG_NAME" \ - --notes "Please refer to [changelog](./CHANGELOG.md) for update details." + --notes "Please refer to [changelog](./CHANGELOG.md#v${VERSION_ANCHOR}) for update details." - name: Publish to Modrinth uses: cloudnode-pro/modrinth-publish@0a5268ad092d4727bb6424326746fa2fe88761ff # v2 @@ -109,7 +110,7 @@ jobs: name: LunaticChat v${{ needs.validate.outputs.version }} project: ${{ secrets.MODRINTH_PROJECT_ID }} version: ${{ needs.validate.outputs.version }} - channel: alpha + channel: beta changelog: | Please refer to [changelog](https://github.com/m1sk9/LunaticChat/blob/main/CHANGELOG.md) for update details. loaders: paper |
