Compare commits
17
Commits
d6f0dbeb2a
...
lint
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3fb3056ecd | ||
|
|
eaaf42fb64 | ||
|
|
013107eece | ||
|
|
9b1839b144 | ||
|
|
cab1e1921f | ||
|
|
ef4d89d896 | ||
|
|
863ec9d533 | ||
|
|
ec75d04e07 | ||
|
|
febb03c381 | ||
|
|
0296e38b9d | ||
|
|
0f083c7f72 | ||
|
|
adee4f2c02 | ||
|
|
1325ec7992 | ||
|
|
2dd16d63ab | ||
|
|
cd3e9dc119 | ||
|
|
8a52e9826d | ||
|
|
6dbf4c08ad |
@@ -0,0 +1,93 @@
|
|||||||
|
name: 'Tag Build and Push Docker image'
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
registry: # id of input
|
||||||
|
description: 'docker regisry host name'
|
||||||
|
type: string
|
||||||
|
default: 'gitea.phadric.de'
|
||||||
|
cache-registry: # id of input
|
||||||
|
description: 'docker regisry host name'
|
||||||
|
default: 'imagecache.phadric.de'
|
||||||
|
type: string
|
||||||
|
image_name:
|
||||||
|
description: 'name of the dockerimage'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
checkout:
|
||||||
|
description: 'checkout repo first'
|
||||||
|
default: 'true'
|
||||||
|
type: string
|
||||||
|
tag:
|
||||||
|
description: 'checkout repo first'
|
||||||
|
default: 'true'
|
||||||
|
type: string
|
||||||
|
# secrets:
|
||||||
|
# TOKEN:
|
||||||
|
# description: 'repo auth token'
|
||||||
|
# required: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: slim
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
if: ${{ inputs.checkout == 'true' }}
|
||||||
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
||||||
|
with:
|
||||||
|
fetch-depth: '0'
|
||||||
|
- name: Bump version and push tag
|
||||||
|
id: tag
|
||||||
|
if: ${{ inputs.tag == 'true' }}
|
||||||
|
uses: anothrNick/github-tag-action@4ed44965e0db8dab2b466a16da04aec3cc312fd8 # 1.75.0
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # if you don't want to set write permissions use a PAT token
|
||||||
|
DEFAULT_BUMP: patch
|
||||||
|
GIT_API_TAGGING: false # dont use API
|
||||||
|
WITH_V: true
|
||||||
|
PRERELEASE: true
|
||||||
|
PRERELEASE_SUFFIX: ${{ github.ref_name }}
|
||||||
|
- name: Extract Docker metadata
|
||||||
|
id: meta
|
||||||
|
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
|
||||||
|
with:
|
||||||
|
flavor: |
|
||||||
|
latest=${{ github.ref_name == 'main' || github.ref_name == 'master' }}
|
||||||
|
tags: |
|
||||||
|
type=ref,event=branch
|
||||||
|
type=semver,pattern={{version}},value=${{steps.tag.outputs.tag}}
|
||||||
|
# output 0.1
|
||||||
|
type=semver,pattern={{major}}.{{minor}},value=${{steps.tag.outputs.tag}}
|
||||||
|
# disabled if major zero
|
||||||
|
type=semver,pattern={{major}},value=${{steps.tag.outputs.tag}},enable=${{ !startsWith(steps.tag.outputs.tag, 'v0.') }}
|
||||||
|
images: ${{ inputs.registry }}/${{ inputs.image_name }}
|
||||||
|
- uses: int128/docker-build-cache-config-action@6b41b75cecc2e81696c50ae7c6c0300b51c2bee1 # v1.62.0
|
||||||
|
id: cache
|
||||||
|
with:
|
||||||
|
image: ${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache
|
||||||
|
extra-cache-to: image-manifest=true
|
||||||
|
- name: Setup Docker buildx
|
||||||
|
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
|
||||||
|
- name: Log into registry ${{ inputs.registry }}
|
||||||
|
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
|
||||||
|
with:
|
||||||
|
registry: ${{ inputs.registry }}
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.TOKEN }}
|
||||||
|
- name: Build and push Docker image
|
||||||
|
id: build-and-push
|
||||||
|
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
push: true
|
||||||
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
|
platforms: linux/amd64
|
||||||
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
cache-from: |
|
||||||
|
type=registry,ref=${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache:latest
|
||||||
|
type=registry,ref=${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache:${{ github.ref_name }}
|
||||||
|
${{ steps.cache.outputs.cache-from }}
|
||||||
|
cache-to: |
|
||||||
|
${{ steps.cache.outputs.cache-to }}
|
||||||
|
type=registry,ref=${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache:latest,mode=max,image-manifest=true
|
||||||
@@ -20,6 +20,8 @@ jobs:
|
|||||||
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
|
||||||
- name: Verify Action
|
- name: Verify Action
|
||||||
run: actionlint -ignore 'unexpected key "description" for "workflow" section' -ignore 'nexpected key "inputs" for "workflow" section.' -ignore 'unexpected key "runs" for "workflow" section.' -ignore '"on" section is missing in workflow' -ignore '"jobs" section is missing in workflow' action.yml
|
run: actionlint -ignore 'unexpected key "description" for "workflow" section' -ignore 'nexpected key "inputs" for "workflow" section.' -ignore 'unexpected key "runs" for "workflow" section.' -ignore '"on" section is missing in workflow' -ignore '"jobs" section is missing in workflow' action.yml
|
||||||
|
- name: Verify Workflow
|
||||||
|
run: actionlint -ignore 'label "slim" is unknown' .github/workflows/docker-build.yml
|
||||||
- name: tag latest after success
|
- name: tag latest after success
|
||||||
if: github.ref == 'refs/heads/main'
|
if: github.ref == 'refs/heads/main'
|
||||||
id: tag
|
id: tag
|
||||||
|
|||||||
+1
-1
@@ -57,7 +57,7 @@ runs:
|
|||||||
# disabled if major zero
|
# disabled if major zero
|
||||||
type=semver,pattern={{major}},value=${{steps.tag.outputs.tag}},enable=${{ !startsWith(steps.tag.outputs.tag, 'v0.') }}
|
type=semver,pattern={{major}},value=${{steps.tag.outputs.tag}},enable=${{ !startsWith(steps.tag.outputs.tag, 'v0.') }}
|
||||||
images: ${{ inputs.registry }}/${{ inputs.image_name }}
|
images: ${{ inputs.registry }}/${{ inputs.image_name }}
|
||||||
- uses: int128/docker-build-cache-config-action@e7428bcd6851e35bd024e91ea18c0da8c0a098b4 # v1.60.0
|
- uses: int128/docker-build-cache-config-action@6b41b75cecc2e81696c50ae7c6c0300b51c2bee1 # v1.62.0
|
||||||
id: cache
|
id: cache
|
||||||
with:
|
with:
|
||||||
image: ${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache
|
image: ${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache
|
||||||
|
|||||||
Reference in New Issue
Block a user