|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
name: Publish Docker image |
|
|
|
on: |
|
workflow_dispatch: |
|
schedule: |
|
|
|
- cron: '12 4 * * *' |
|
|
|
concurrency: |
|
group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }} |
|
cancel-in-progress: true |
|
|
|
|
|
|
|
permissions: |
|
packages: write |
|
|
|
jobs: |
|
push_to_registry: |
|
name: Push Docker image to Docker Hub |
|
|
|
runs-on: ubuntu-latest |
|
env: |
|
COMMIT_SHA: ${{ github.sha }} |
|
strategy: |
|
matrix: |
|
config: |
|
- { tag: "light", dockerfile: ".devops/llama-cli.Dockerfile", platforms: "linux/amd64,linux/arm64" } |
|
- { tag: "server", dockerfile: ".devops/llama-server.Dockerfile", platforms: "linux/amd64,linux/arm64" } |
|
- { tag: "full", dockerfile: ".devops/full.Dockerfile", platforms: "linux/amd64,linux/arm64" } |
|
- { tag: "light-cuda", dockerfile: ".devops/llama-cli-cuda.Dockerfile", platforms: "linux/amd64" } |
|
- { tag: "server-cuda", dockerfile: ".devops/llama-server-cuda.Dockerfile", platforms: "linux/amd64" } |
|
- { tag: "full-cuda", dockerfile: ".devops/full-cuda.Dockerfile", platforms: "linux/amd64" } |
|
- { tag: "light-musa", dockerfile: ".devops/llama-cli-musa.Dockerfile", platforms: "linux/amd64" } |
|
- { tag: "server-musa", dockerfile: ".devops/llama-server-musa.Dockerfile", platforms: "linux/amd64" } |
|
- { tag: "full-musa", dockerfile: ".devops/full-musa.Dockerfile", platforms: "linux/amd64" } |
|
|
|
|
|
|
|
|
|
- { tag: "light-intel", dockerfile: ".devops/llama-cli-intel.Dockerfile", platforms: "linux/amd64" } |
|
- { tag: "server-intel", dockerfile: ".devops/llama-server-intel.Dockerfile", platforms: "linux/amd64" } |
|
steps: |
|
- name: Check out the repo |
|
uses: actions/checkout@v4 |
|
with: |
|
fetch-depth: 0 |
|
|
|
- name: Set up QEMU |
|
uses: docker/setup-qemu-action@v2 |
|
|
|
- name: Set up Docker Buildx |
|
uses: docker/setup-buildx-action@v2 |
|
|
|
- name: Log in to Docker Hub |
|
uses: docker/login-action@v2 |
|
with: |
|
registry: ghcr.io |
|
username: ${{ github.repository_owner }} |
|
password: ${{ secrets.GITHUB_TOKEN }} |
|
|
|
- name: Determine tag name |
|
id: tag |
|
shell: bash |
|
run: | |
|
BUILD_NUMBER="$(git rev-list --count HEAD)" |
|
SHORT_HASH="$(git rev-parse --short=7 HEAD)" |
|
REPO_OWNER="${GITHUB_REPOSITORY_OWNER@L}" # to lower case |
|
REPO_NAME="${{ github.event.repository.name }}" |
|
|
|
|
|
if [[ "${{ env.GITHUB_BRANCH_NAME }}" == "master" ]]; then |
|
TAG_POSTFIX="b${BUILD_NUMBER}" |
|
else |
|
SAFE_NAME=$(echo "${{ env.GITHUB_BRANCH_NAME }}" | tr '/' '-') |
|
TAG_POSTFIX="${SAFE_NAME}-${SHORT_HASH}" |
|
fi |
|
|
|
|
|
TAGS="" |
|
TAGS="${TAGS}ghcr.io/${REPO_OWNER}/${REPO_NAME}:${{ matrix.config.tag }}," |
|
TAGS="${TAGS}ghcr.io/${REPO_OWNER}/${REPO_NAME}:${{ matrix.config.tag }}-${TAG_POSTFIX}" |
|
|
|
echo "output_tags=$TAGS" >> $GITHUB_OUTPUT |
|
echo "output_tags=$TAGS" |
|
env: |
|
GITHUB_BRANCH_NAME: ${{ github.head_ref || github.ref_name }} |
|
GITHUB_REPOSITORY_OWNER: '${{ github.repository_owner }}' |
|
|
|
|
|
- name: Free Disk Space (Ubuntu) |
|
uses: jlumbroso/free-disk-space@main |
|
with: |
|
|
|
|
|
tool-cache: false |
|
|
|
|
|
|
|
android: true |
|
dotnet: true |
|
haskell: true |
|
large-packages: true |
|
docker-images: true |
|
swap-storage: true |
|
|
|
- name: Build and push Docker image (tagged + versioned) |
|
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} |
|
uses: docker/build-push-action@v6 |
|
with: |
|
context: . |
|
push: true |
|
platforms: ${{ matrix.config.platforms }} |
|
|
|
tags: ${{ steps.tag.outputs.output_tags }} |
|
file: ${{ matrix.config.dockerfile }} |
|
|