From 98fcc06b3b7d63ba3788637fa2a65d7c55c892be Mon Sep 17 00:00:00 2001 From: moecinnamo Date: Tue, 2 Dec 2025 18:41:35 +0800 Subject: [PATCH] TOKEN Modify --- .github/workflows/test-and-build.yml | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index 2304e56..00791a6 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -24,6 +24,10 @@ jobs: - name: Test code run: | echo "Testing code" + - name: Clean build + run: | + echo "Cleaning build" + rm -rf MeowEmbeddedMusicServer-* - name: Build version if: ${{ github.event.inputs.build_type == 'version' }} run: | @@ -71,6 +75,23 @@ jobs: with: tag_name: ${{ github.event.inputs.version_number }} name: ${{ github.event.inputs.version_number }} + body: | + ### Build Information + - Build Date: $(date +"%Y-%m-%d %H:%M:%S") + - Branch: v0.0.2-dev + - Commit: ${{ github.sha }} + + ### Binaries + - Linux i386 + - Linux amd64 + - Linux arm64 + - Windows i386 + - Windows amd64 + - Windows arm64 + - macOS amd64 + - macOS arm64 + + **Full Changelog**: https://github.com/OmniX-Space/MeowBox-Core/compare/v0.0.1...${{ github.sha }} files: | MeowEmbeddedMusicServer-Linux-i386 MeowEmbeddedMusicServer-Linux-amd64 @@ -83,4 +104,6 @@ jobs: prerelease: ${{ github.event.inputs.build_type == 'pre' }} make_latest: ${{ github.event.inputs.build_type != 'pre' }} env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.CUSTOM_GITHUB_TOKEN }} + continue-on-error: true \ No newline at end of file