From 297a05a3629a8804e652faf9714b230bdcccd23d Mon Sep 17 00:00:00 2001 From: Tunglies <77394545+Tunglies@users.noreply.github.com> Date: Wed, 13 Aug 2025 16:52:12 +0800 Subject: [PATCH] refactor: update clean old assets job to include steps section --- .github/workflows/autobuild.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index 2947ec28..d18529c4 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -251,11 +251,13 @@ jobs: clean_old_assets: name: Clean Old Release Assets needs: [check_commit, update_tag] + runs-on: [ubuntu-latest] if: ${{ needs.check_commit.outputs.should_run == 'true' && needs.update_tag.result == 'success' }} - uses: ./.github/workflow/clean-old-assets.yml - with: - tag_name: ${{ env.TAG_NAME }} - dry_run: false + steps: + - uses: ./.github/workflows/clean-old-assets.yml + with: + tag_name: ${{ env.TAG_NAME }} + dry_run: false autobuild-x86-windows-macos-linux: name: Autobuild x86 Windows, MacOS and Linux