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 f9ae91806c
Some checks failed
docker build with git tag / dockerfile_lint (push) Failing after 41s
docker build with git tag / build (push) Has been skipped
mgirate to gitea runner
2024-12-27 13:22:25 +01:00

40 lines
947 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 }}
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