We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea665cc commit 1178ebcCopy full SHA for 1178ebc
.github/workflows/release.yml
@@ -91,7 +91,7 @@ jobs:
91
-DENABLE_OPENGL=ON \
92
-DENABLE_TESTS=On \
93
-DBUILD_SENTRY_PLUGIN=OFF \
94
- -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/dist \
+ -DCMAKE_INSTALL_PREFIX=$PWD/dist \
95
-GNinja
96
97
- name: Build & Install
@@ -101,7 +101,8 @@ jobs:
101
uses: actions/upload-artifact@v4
102
with:
103
name: flutterpi-${{ matrix.target }}-${{ matrix.buildtype }}
104
- path: ${{ github.workspace }}/dist/bin/flutter-pi
+ path: dist/bin/flutter-pi
105
+ if-no-files-found: error
106
107
publish:
108
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/release/')
0 commit comments