From 9bd76d3ad0b3390129544a3de286d5f97ff732af Mon Sep 17 00:00:00 2001 From: "mr. m" <91018726+mr-cheffy@users.noreply.github.com> Date: Wed, 18 Mar 2026 22:56:24 +0100 Subject: [PATCH] no-bug: Fix release builds (gh-12825) --- .github/workflows/build.yml | 3 +-- .github/workflows/sync-upstream.yml | 14 -------------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 193b52b8a..607470d6f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -186,7 +186,7 @@ jobs: check-release: runs-on: ubuntu-latest - needs: [build-data, lint] + needs: [build-data] steps: - name: Checkout repository uses: actions/checkout@v4 @@ -477,7 +477,6 @@ jobs: mac-uni, appimage, source, - lint, stop-self-hosted, ] runs-on: blacksmith-2vcpu-ubuntu-2404 diff --git a/.github/workflows/sync-upstream.yml b/.github/workflows/sync-upstream.yml index 066be05d1..3913e4099 100644 --- a/.github/workflows/sync-upstream.yml +++ b/.github/workflows/sync-upstream.yml @@ -80,21 +80,12 @@ jobs: npm run sync fi - - name: Run Import - if: steps.check-upstream-branch.outputs.branch_exists == 'false' - run: npm run import - - - name: Run Bootstrap - if: steps.check-upstream-branch.outputs.branch_exists == 'false' - run: npm run bootstrap - - name: Install requirements run: pip3 install -r requirements.txt - name: Check if any files changed id: git-check run: | - npm run lint:fix if [ -n "$(git status --porcelain)" ]; then echo "files_changed=true" >> $GITHUB_OUTPUT else @@ -128,11 +119,6 @@ jobs: if: steps.git-check.outputs.files_changed == 'true' run: python3 scripts/update_external_patches.py || true - - name: Run formatter - if: steps.check-upstream-branch.outputs.branch_exists == 'false' - run: | - npm run lint:fix - - name: Create pull request uses: peter-evans/create-pull-request@v7 if: steps.git-check.outputs.files_changed == 'true'