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 414cf47 commit 67071e6Copy full SHA for 67071e6
.github/workflows/release.yml
@@ -77,10 +77,8 @@ jobs:
77
cd Flutter/json_to_dart
78
if [ "${{ matrix.platform }}" = "windows" ]; then
79
flutter build windows --release
80
- ZIP_DIR=$(dirname "${{ matrix.build_target }}")
81
- PARENT_OF_RUNNER=$(dirname "$ZIP_DIR")
82
- RELEASE_DIR="${PARENT_OF_RUNNER}\\Release"
83
- pwsh -command "Compress-Archive -Path '${RELEASE_DIR}\*' -DestinationPath '${{ matrix.artifact }}'"
+ ZIP_DIR="${{ matrix.build_target }}"
+ pwsh -command "Compress-Archive -Path '${ZIP_DIR}\*' -DestinationPath '${{ matrix.artifact }}'"
84
elif [ "${{ matrix.platform }}" = "macos" ]; then
85
flutter build macos --release
86
APP_PARENT_DIR=$(dirname "${{ matrix.build_target }}")
0 commit comments