We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6664fc9 commit 3d3b2b3Copy full SHA for 3d3b2b3
.github/actions/flutter_integration_test/action.yml
@@ -79,8 +79,15 @@ runs:
79
with:
80
name: ${{ github.run_id }}-${{ inputs.os }}
81
82
+ - name: Configure Windows long paths
83
+ if: runner.os == 'Windows'
84
+ shell: pwsh
85
+ run: |
86
+ New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
87
+ git config --system core.longpaths true
88
+
89
- name: Uncompressed appflowy_flutter
- run: tar --dereference -xf appflowy_flutter.tar.gz
90
+ run: tar -xf appflowy_flutter.tar.gz
91
shell: bash
92
93
- name: Run Flutter integration tests
0 commit comments