From 95888d0966d5338b1c05a7b515dadd1a6f90e24f Mon Sep 17 00:00:00 2001 From: arcade_kappa Date: Wed, 8 May 2024 22:13:44 +0800 Subject: [PATCH 1/2] Fix working directory --- .github/workflows/Release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 04c39c13f..4f976cd97 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -61,7 +61,8 @@ jobs: pip install -r mmc/requirements.txt - name: Generate MMC Pack - run: python mmc/main.py + run: python main.py + working-directory: ./mmc env: PATH_TO_EXIST_INSTALLER: ./projects/cleanroom/build/libs/cleanroom-${{ env.CLEANROOM_VERSION }}-installer.jar From 2098ef50de37217a46ec0c46dacbba2fda992f9d Mon Sep 17 00:00:00 2001 From: arcade_kappa Date: Wed, 8 May 2024 22:15:51 +0800 Subject: [PATCH 2/2] Add auto-changelog --- .github/workflows/Release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 4f976cd97..c0505fe15 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -71,4 +71,5 @@ jobs: - uses: ncipollo/release-action@v1.14.0 with: - artifacts: "projects/cleanroom/build/libs/*" \ No newline at end of file + artifacts: "projects/cleanroom/build/libs/*" + generateReleaseNotes: true \ No newline at end of file