Skip to content

Commit

Permalink
v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ENDERMANYK committed Dec 19, 2024
1 parent 6401308 commit ece7a0e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- main
tags:
- 'v*'

env:
BUILD_TYPE: Release
Expand All @@ -30,12 +32,16 @@ jobs:
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}

- name: Get version from tag
id: get_version
run: echo "::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}"

- name: Create Release and Upload Release Asset
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.run_number }}
name: Release ${{ github.run_number }}
body: Support 1.21.50 release and 1.21.60.21 preview
tag_name: v${{ steps.get_version.outputs.version }}
name: Release v${{ steps.get_version.outputs.version }}
body: Support From 1.20.50 to 1.21.60
draft: false
prerelease: false
files: |
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

A Frida module let Minecraft read the .material.bin file from the resource pack, just like how we load third-party shaders before.

> [!NOTE]
> Release 15 supports 1.21.20, 1.21.30, 1.21.40, 1.21.50 release and 1.21.60.21 preview.
<!-- > [!NOTE]
> Release 15 supports 1.21.20, 1.21.30, 1.21.40, 1.21.50 release and 1.21.60.21 preview. -->

<!--maybe check latest preview support?-->

Expand Down

0 comments on commit ece7a0e

Please sign in to comment.