From 25fd6fc39f4f728514823b64e4cf1e4871b906b3 Mon Sep 17 00:00:00 2001 From: Miepee Date: Mon, 3 Jun 2024 11:54:50 +0200 Subject: [PATCH] Remove building 32bit GUI --- .github/workflows/publish_gui_32bit.yml | 50 ------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/publish_gui_32bit.yml diff --git a/.github/workflows/publish_gui_32bit.yml b/.github/workflows/publish_gui_32bit.yml deleted file mode 100644 index 570cad5b5..000000000 --- a/.github/workflows/publish_gui_32bit.yml +++ /dev/null @@ -1,50 +0,0 @@ -name: Publish GUI 32Bit - -on: - push: - branches: [ master ] - workflow_dispatch: - -concurrency: - group: ${{ github.workflow }} - cancel-in-progress: true - -jobs: - build: - - strategy: - fail-fast: false - matrix: - os: [windows-latest] - configuration: [Debug] - bundled: [true] - singlefile: [true, false] - - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v4 - - name: Setup .NET - uses: actions/setup-dotnet@v4 - with: - dotnet-version: 6.0.x - - name: Restore dependencies - run: dotnet restore - - name: Build - run: | - dotnet build UndertaleModTool --no-restore - dotnet build UndertaleModToolUpdater --no-restore - - name: Publish ${{ matrix.os }} GUI 32Bit - run: | - dotnet publish UndertaleModTool -c ${{ matrix.configuration }} -r win-x86 --self-contained ${{ matrix.bundled }} -p:PublishSingleFile=${{ matrix.singlefile }} --output ${{ matrix.os }} - dotnet publish UndertaleModToolUpdater -c ${{ matrix.configuration }} -r win-x86 --self-contained ${{ matrix.bundled }} -p:PublishSingleFile=false --output ${{ matrix.os }}/Updater - - name: Copy external files - run: | - cp ./README.md ./${{ matrix.os }} - cp ./SCRIPTS.md ./${{ matrix.os }} - cp ./LICENSE.txt ./${{ matrix.os }} - - name: Upload ${{ matrix.os }} GUI 32Bit - uses: actions/upload-artifact@v4 - with: - name: ${{ matrix.os }}-isBundled-${{ matrix.bundled }}-isSingleFile-${{ matrix.singlefile }} - path: ${{ matrix.os }}