We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to apply a patch from this PR how to proceed ? On my local machine i use the following in the flutter directory:
curl https://patch-diff.githubusercontent.com/raw/flutter/flutter/pull/137874.patch > intrinsic.patch git apply intrinsic.patch
How can I do the same from my CI ?
The text was updated successfully, but these errors were encountered:
I have a question like you, and I have a workaround, you can try it:
jobs: auto-build: runs-on: macos-latest steps: - uses: actions/checkout@v4 - uses: subosito/flutter-action@v2 with: flutter-version: '3.22.2' channel: 'stable' cache: true - run: | flutter --version cd ${{ env.FLUTTER_ROOT }} curl https://patch-diff.githubusercontent.com/raw/flutter/flutter/pull/137874.patch | git apply git status
Sorry, something went wrong.
No branches or pull requests
I want to apply a patch from this PR how to proceed ?
On my local machine i use the following in the flutter directory:
curl https://patch-diff.githubusercontent.com/raw/flutter/flutter/pull/137874.patch > intrinsic.patch git apply intrinsic.patch
How can I do the same from my CI ?
The text was updated successfully, but these errors were encountered: