Added architecture to linux name
This commit is contained in:
parent
1f31d51e30
commit
cf92fbcabf
|
@ -12,8 +12,8 @@ on:
|
||||||
required: true
|
required: true
|
||||||
default: false
|
default: false
|
||||||
type: boolean
|
type: boolean
|
||||||
buildLinux:
|
buildLinuxX64:
|
||||||
description: Build for Linux
|
description: Build for Linux x64
|
||||||
required: true
|
required: true
|
||||||
default: false
|
default: false
|
||||||
type: boolean
|
type: boolean
|
||||||
|
@ -92,9 +92,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: ollama-windows-x64
|
name: ollama-windows-x64
|
||||||
path: build\windows\x64\runner\ollama-windows-x64-v${{ steps.get_flutter_version.outputs.version_number }}.exe
|
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
|
name: Building for Linux
|
||||||
if: ${{ github.event.inputs.buildLinux == 'true' }}
|
if: ${{ github.event.inputs.buildLinuxX64 == 'true' }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: analyze
|
needs: analyze
|
||||||
steps:
|
steps:
|
||||||
|
@ -127,7 +127,7 @@ jobs:
|
||||||
name: Creating bundle
|
name: Creating bundle
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
needs: [build-android, build-windows-x64, build-linux]
|
needs: [build-android, build-windows-x64, build-linux-x64]
|
||||||
steps:
|
steps:
|
||||||
- name: Adding builds
|
- name: Adding builds
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
|
|
Loading…
Reference in New Issue