diff options
| author | Sho Sakuma <me@m1sk9.dev> | 2026-01-24 04:40:54 +0900 |
|---|---|---|
| committer | Sho Sakuma <me@m1sk9.dev> | 2026-01-24 04:40:54 +0900 |
| commit | 3b14d0ea23da82d3936ca025bec51504f8255948 (patch) | |
| tree | 084bd7c95f333763a5cdb6308ad15c6b560057c0 /.github | |
| parent | ac80dc3ce71f9be0397442208cac80f6069eea03 (diff) | |
| download | LunaticChat-3b14d0ea23da82d3936ca025bec51504f8255948.tar.gz LunaticChat-3b14d0ea23da82d3936ca025bec51504f8255948.tar.bz2 LunaticChat-3b14d0ea23da82d3936ca025bec51504f8255948.zip | |
docs: Add beta documents
Diffstat (limited to '.github')
| -rw-r--r-- | .github/renovate.json | 3 | ||||
| -rw-r--r-- | .github/workflows/release.yaml | 7 |
2 files changed, 7 insertions, 3 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..59260b5 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,9 +110,9 @@ 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. + Please refer to [changelog](https://github.com/m1sk9/LunaticChat/blob/main/CHANGELOG.md#v${{ replace(needs.validate.outputs.version, '.', '') }}) for update details. loaders: paper game-versions: "1.21.x" files: ${{ needs.validate.outputs.jar_name }} |
