Skip to content

build-linux-amd64-manual #5

build-linux-amd64-manual

build-linux-amd64-manual #5

name: build-linux-amd64-manual
on:
workflow_dispatch:
jobs:
build-linux-amd64:
environment: release
runs-on: ubuntu-latest
resources:

Check failure on line 11 in .github/workflows/build-linux-amd64-manual.yml

View workflow run for this annotation

GitHub Actions / build-linux-amd64-manual

Invalid workflow file

The workflow is not valid. .github/workflows/build-linux-amd64-manual.yml (Line: 11, Col: 5): Unexpected value 'resources'
repository:
disk: 100000 # 100GB
env:
OLLAMA_SKIP_MANIFEST_CREATE: '1'
BUILD_ARCH: amd64
PUSH: '1'
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set Version
shell: bash
run: echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_ACCESS_TOKEN }}
- run: |
./scripts/build_linux.sh
./scripts/build_docker.sh
mv dist/deps/* dist/
- uses: actions/upload-artifact@v4
with:
name: dist-linux-amd64
path: |
dist/*linux*
!dist/*-cov