diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index acd0f5969..1fb3ca1e6 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -71,7 +71,7 @@ jobs: early-exit-check: runs-on: ubuntu-22.04 outputs: - should_skip_build: ${{ steps.core_files_changed.outputs.result }} + should_skip_build: ${{ steps.core_files_changed.outputs.result != 'true' }} steps: - uses: actions/checkout@v4 with: @@ -111,21 +111,6 @@ jobs: echo "result=false" >> $GITHUB_OUTPUT fi - # - name: xxxxxxx - # # if: steps.core_files_changed.outputs.result != 'true' - # id: core_files_changed_output - # shell: bash - # run: | - # echo "${{ toJson(steps.core_files_changed.outputs) }}" | jq . - - # # if [ "${{ steps.core_files_changed.outputs.result }}" == "true" ]; then - # # echo "YESSSSSSSSS" - # # echo "result=true" >> $GITHUB_OUTPUT - # # else - # # echo "NOOOOO" - # # echo "result=false" >> $GITHUB_OUTPUT - # # fi - build-ios: needs: [check-secrets, check-vars, early-exit-check] if: ${{ needs.early-exit-check.outputs.should_skip_build != 'true' }}