diff --git a/.github/workflows/build_push.yml b/.github/workflows/build_push.yml index 870d132a8a..bb949f9fc4 100644 --- a/.github/workflows/build_push.yml +++ b/.github/workflows/build_push.yml @@ -45,7 +45,17 @@ jobs: - name: Extract branch name id: branch_name shell: bash - run: echo "name=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT + run: echo "NAME=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT + + - name: Get changelog + id: changelog + shell: bash + run: | + { + echo "CHANGELOG<> "$GITHUB_OUTPUT" 2> /dev/null # PROD - name: Prepare release build @@ -56,7 +66,7 @@ jobs: # NIGHTLY - name: Prepare nightly build - if: steps.branch_name.outputs.name == 'master' && github.event.inputs.version == '' + if: steps.branch_name.outputs.NAME == 'master' && github.event.inputs.version == '' run: | set -x echo "VERSION_TAG=r$(git rev-list --count HEAD)" >> $GITHUB_ENV @@ -121,6 +131,8 @@ jobs: tag_name: ${{ env.VERSION_TAG }} name: Yōkai ${{ env.VERSION_TAG }} body: | + ${{ steps.changelog.outputs.CHANGELOG }} + --- ### Checksums @@ -159,6 +171,8 @@ jobs: It is not ready for daily use and we do not guarantee its usability. Please download the latest stable releases instead (https://github.com/null2264/yokai/releases/latest) + ${{ steps.changelog.outputs.CHANGELOG }} + --- ### Checksums diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..38ed553517 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ + +## Additions +- Scanlator filter is now being backed up + +## Fixes +- Fixed error handling for MAL tracking (AntsyLich) +- Fixed extension installer preference incompatibility with modern Tachi + +## Other +- Split PreferencesHelper even more +- Simplify extension install issue fix (AwkwardPeak7) +- Update dependency com.github.tachiyomiorg:image-decoder to fbd6601290 \ No newline at end of file diff --git a/changelogFormat b/changelogFormat deleted file mode 100644 index a724cf41bd..0000000000 --- a/changelogFormat +++ /dev/null @@ -1,7 +0,0 @@ -## Additions - -## Changes - -## Fixes - -## Other