diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0b9c3fe..49a45c3e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,9 @@ jobs: - name: Build macos dmg if: matrix.platform == 'macos' run: | - brew install create-dmg tree + brew install create-dmg tree node + npm install -g appdmg + - name: Setup Java if: matrix.platform == 'android' uses: actions/setup-java@v3 diff --git a/Makefile b/Makefile index 32c7a33a..2ed73c44 100644 --- a/Makefile +++ b/Makefile @@ -23,9 +23,10 @@ linux-release: flutter_distributor package --platform linux --targets appimage macos-release: - flutter build macos --release &&\ - tree ./build/macos/Build &&\ - create-dmg --app-drop-link 600 185 "hiddify-macos-universal.dmg" ./build/macos/Build/Products/Release/hiddify.app + flutter_distributor package --platform macos --targets dmg + # flutter build macos --release &&\ + # tree ./build/macos/Build &&\ + # create-dmg --app-drop-link 600 185 "hiddify-macos-universal.dmg" ./build/macos/Build/Products/Release/hiddify.app android-libs: mkdir -p $(ANDROID_OUT)