From 32f3a9edba28ec2368730c6038ff6d3f8d55b404 Mon Sep 17 00:00:00 2001 From: Innei Date: Fri, 27 Sep 2024 11:37:34 +0800 Subject: [PATCH] fix(ci): remove check diff Signed-off-by: Innei --- .github/workflows/nightly.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 4726276365..0b56da27ce 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -15,20 +15,20 @@ env: jobs: check-for-changes: runs-on: ubuntu-latest - outputs: - should_run: ${{ steps.check.outputs.should_run }} + # outputs: + # should_run: ${{ steps.check.outputs.should_run }} steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - - name: Check for code changes - id: check - run: | - git diff --quiet @{1.day.ago} HEAD -- ':!.github' || echo "should_run=true" >> $GITHUB_OUTPUT + # - name: Check for code changes + # id: check + # run: | + # git diff --quiet @{1.day.ago} HEAD -- ':!.github' || echo "should_run=true" >> $GITHUB_OUTPUT nightly-release: - needs: check-for-changes - if: needs.check-for-changes.outputs.should_run == 'true' + # needs: check-for-changes + # if: needs.check-for-changes.outputs.should_run == 'true' runs-on: ${{ matrix.os }} strategy: