This repository has been archived on 2025-03-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ollama-intel-gpu/.gitea/workflows/tag-release.yaml
Roger Sikorski cbe10fdaf1
Some checks failed
docker build with git tag / build (push) Failing after 4s
push
2024-12-27 13:27:33 +01:00

40 lines
975 B
YAML

---
name: docker build with git tag
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
# dockerfile_lint:
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v4
# # https://github.com/hadolint/hadolint-action/releases
# - uses: hadolint/hadolint-action@v3.1.0
# with:
# dockerfile: Dockerfile/base
build:
# needs: dockerfile_lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Kaniko build
# https://github.com/aevea/action-kaniko/releases
uses: aevea/action-kaniko@v0.14.0
with:
# repo setup
image: ${{ github.repository.toLower() }}
username: rogersik
password: ${{ secrets.REGISTRY_PASSWORD }}
# build options
build_file: Dockerfile
tag: "${{ env.TAG }}"
build_args: |
GIT_TAG=${{ env.TAG }}
tag_with_latest: true
cache: true