From cf92fbcabfe391c53920513e2b71d696d3238bf9 Mon Sep 17 00:00:00 2001 From: JHubi1 Date: Tue, 20 Aug 2024 17:56:20 +0200 Subject: [PATCH] Added architecture to linux name --- .github/workflows/build.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 61c716f..d5e5a8e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -12,8 +12,8 @@ on: required: true default: false type: boolean - buildLinux: - description: Build for Linux + buildLinuxX64: + description: Build for Linux x64 required: true default: false type: boolean @@ -92,9 +92,9 @@ jobs: with: name: ollama-windows-x64 path: build\windows\x64\runner\ollama-windows-x64-v${{ steps.get_flutter_version.outputs.version_number }}.exe - build-linux: + build-linux-x64: name: Building for Linux - if: ${{ github.event.inputs.buildLinux == 'true' }} + if: ${{ github.event.inputs.buildLinuxX64 == 'true' }} runs-on: ubuntu-latest needs: analyze steps: @@ -127,7 +127,7 @@ jobs: name: Creating bundle runs-on: ubuntu-latest if: ${{ always() }} - needs: [build-android, build-windows-x64, build-linux] + needs: [build-android, build-windows-x64, build-linux-x64] steps: - name: Adding builds uses: actions/download-artifact@v4