From 68d57c8a5ec1f909c1e7eb50daa66522e13c93d8 Mon Sep 17 00:00:00 2001 From: Jerre Schoudt Date: Thu, 4 Aug 2022 23:42:27 -0400 Subject: [PATCH] only build linux release for now --- .../build-flutter-desktop-releases.yaml | 63 ------------------- 1 file changed, 63 deletions(-) diff --git a/.github/workflows/build-flutter-desktop-releases.yaml b/.github/workflows/build-flutter-desktop-releases.yaml index 7401a73..31c6771 100644 --- a/.github/workflows/build-flutter-desktop-releases.yaml +++ b/.github/workflows/build-flutter-desktop-releases.yaml @@ -35,66 +35,3 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: files: build/linux/x64/release/bundle/DungeondraftAssetExplorer-${{github.ref_name}}-linux.zip - - build-and-release-windows: - runs-on: windows-latest - - steps: - - uses: actions/checkout@v2 - - uses: subosito/flutter-action@v1 - with: - channel: 'stable' - flutter-version: '3.0.5' - - name: Install project dependencies - run: flutter pub get - - name: Generate intermediates - run: flutter pub run build_runner build --delete-conflicting-outputs - - name: Enable windows build - run: flutter config --enable-windows-desktop - - name: Build artifacts - run: flutter build windows --release - - name: Archive Release - uses: thedoctor0/zip-release@master - with: - type: 'zip' - filename: DungeondraftAssetExplorer-${{github.ref_name}}-windows.zip - directory: build/windows/runner/Release - - name: Windows Release - uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - files: build/windows/runner/Release/DungeondraftAssetExplorer-${{github.ref_name}}-windows.zip - - build-and-release-macos: - runs-on: macos-latest - - steps: - - uses: actions/checkout@v2 - - uses: subosito/flutter-action@v1 - with: - channel: 'stable' - flutter-version: '3.0.5' - - name: Install project dependencies - run: flutter pub get - - name: Generate intermediates - run: flutter pub run build_runner build --delete-conflicting-outputs - - name: Enable macOS build - run: flutter config --enable-macos-desktop - - name: Build artifacts - run: flutter build macos --release - - name: Archive Release - uses: thedoctor0/zip-release@master - with: - type: 'zip' - filename: DungeondraftAssetExplorer-${{github.ref_name}}-macos.zip - directory: build/macos/Build/Products/Release - - name: macOS Release - uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - files: build/macos/Build/Products/Release/DungeondraftAssetExplorer-${{github.ref_name}}-macos.zip - \ No newline at end of file