Added architecture to linux name
This commit is contained in:
parent
1f31d51e30
commit
cf92fbcabf
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue