27 Commits

Author SHA1 Message Date
69ee3e8b14 Update .github/workflows/action.yml
Some checks failed
Actionlint / build (push) Failing after 14s
2025-08-25 17:42:40 +03:00
f8643ac173 Update action.yml
Some checks failed
Actionlint / build (push) Failing after 14s
2025-08-25 17:40:48 +03:00
9d6404c2f4 Update action.yml
All checks were successful
Actionlint / build (push) Successful in 11s
2025-08-18 14:06:21 +03:00
e5a635c741 Merge pull request 'Update actions/checkout action to v4.3.0 #none minor' (#17) from renovate-github-actions into main
All checks were successful
Actionlint / build (push) Successful in 13s
2025-08-11 14:07:53 +03:00
e04f237647 Update actions/checkout action to v4.3.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 14s
2025-08-11 11:07:51 +00:00
de2b1bbbac Merge pull request 'Update docker/login-action action to v3.5.0 #none minor' (#16) from renovate-github-actions into main
All checks were successful
Actionlint / build (push) Successful in 6s
2025-08-04 17:06:31 +03:00
a136f6982a Update docker/login-action action to v3.5.0 #none minor 2025-08-04 14:06:30 +00:00
d4c4cd3dfb Merge pull request 'Update docker/metadata-action action to v5.8.0 #none minor' (#15) from renovate-github-actions into main
All checks were successful
Actionlint / build (push) Successful in 13s
2025-08-01 13:07:54 +03:00
683fa5c055 Update docker/metadata-action action to v5.8.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 5s
2025-08-01 10:07:51 +00:00
046a225e7e Update docker/setup-buildx-action action to v3.11.1 #none patch
All checks were successful
Actionlint / build (push) Successful in 24s
2025-06-18 09:08:40 +00:00
e5b46d6385 Update docker/setup-buildx-action action to v3.11.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 21s
2025-06-16 13:08:25 +00:00
69cad58d3f Update docker/build-push-action action to v6.18.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 10s
2025-05-27 17:08:15 +00:00
5195bbca59 Merge pull request 'separate_cache' (#12) from separate_cache into main
All checks were successful
Actionlint / build (push) Successful in 9s
Reviewed-on: #12
2025-05-23 15:37:09 +03:00
5eecde82b3 Update action.yml
All checks were successful
Actionlint / build (push) Successful in 8s
2025-05-23 15:18:24 +03:00
087e5b576f Update action.yml
All checks were successful
Actionlint / build (push) Successful in 11s
2025-05-23 14:42:05 +03:00
e7cc9a3266 Update docker/build-push-action action to v6.17.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 6s
2025-05-15 13:07:00 +00:00
862ae7dd2b Update Github Actions #none minor
All checks were successful
Actionlint / build (push) Successful in 5s
2025-05-12 11:10:05 +00:00
95ef39b83c Update docker/login-action action to v3.4.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 11s
2025-03-14 10:07:01 +00:00
889cffd45b Update Github Actions #none minor
All checks were successful
Actionlint / build (push) Successful in 7s
2025-02-26 16:07:06 +00:00
f98a84551d Update docker/build-push-action action to v6.14.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 13s
2025-02-19 16:06:34 +00:00
776f1b1fd1 Update docker/setup-buildx-action action to v3.9.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 8s
2025-02-06 14:06:26 +00:00
356ccabf9c Update docker/build-push-action action to v6.13.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 7s
2025-01-24 10:06:37 +00:00
29016b9cf4 Update action.yml
All checks were successful
Actionlint / build (push) Successful in 12s
2025-01-20 11:04:36 +02:00
7053f2f43b Update action.yml
All checks were successful
Actionlint / build (push) Successful in 6s
2025-01-20 11:00:15 +02:00
778054feda Update docker/build-push-action action to v6.12.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 7s
2025-01-15 13:07:02 +00:00
cbe3fdd719 Update docker/build-push-action action to v6.11.0 #none minor
All checks were successful
Actionlint / build (push) Successful in 13s
2025-01-08 10:06:07 +00:00
3cc527e684 Update Github Actions #none patch
All checks were successful
Actionlint / build (push) Successful in 12s
2025-01-07 11:21:52 +00:00
3 changed files with 112 additions and 82 deletions

111
.github/workflows/action.yml vendored Normal file
View File

@@ -0,0 +1,111 @@
name: Docker Build
on:
workflow_call:
inputs:
registry: # id of input
description: 'docker regisry host name'
required: true
default: 'gitea.phadric.de'
cache-registry: # id of input
description: 'docker regisry host name'
required: true
default: 'imagecache.phadric.de'
image_name:
description: 'name of the dockerimage'
required: true
default: ${{ github.repository }}
token:
description: 'repo auth token'
required: true
jobs:
build:
runs-on: slim
steps:
- run: echo "::group::Checkout repository"
if: ${{ always() }}
- name: Checkout repository
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
fetch-depth: '0'
- run: echo "::endgroup::"
if: ${{ always() }}
- run: echo "::group::Bump version and push tag"
if: ${{ always() }}
- name: Bump version and push tag
id: tag
uses: phadric/github-tag-action@a5250a59655e9f4b0350407380a92c73948f2aec # master
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 }}
- run: echo "::endgroup::"
if: ${{ always() }}
- run: echo "::group::Extract Docker metadata"
if: ${{ always() }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.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 }}
- run: echo "::endgroup::"
if: ${{ always() }}
- run: echo "::group::Configure build Cache"
if: ${{ always() }}
- uses: int128/docker-build-cache-config-action@338206c80bf9eeb2b9694b7b4fc8c247c317e2a8 # v1.38.0
id: cache
with:
image: ${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache
extra-cache-to: image-manifest=true
- run: echo "::endgroup::"
if: ${{ always() }}
- run: echo "::group::Setup Buildx"
if: ${{ always() }}
- name: Setup Docker buildx
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
- run: echo "::endgroup::"
if: ${{ always() }}
- run: echo "::group::Log into Registry ${{ inputs.registry }}"
if: ${{ always() }}
- name: Log into registry ${{ inputs.registry }}
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
with:
registry: ${{ inputs.registry }}
username: ${{ github.actor }}
password: ${{ inputs.token }}
- run: echo "::endgroup::"
if: ${{ always() }}
- run: echo "::group::Build and Push docker image"
if: ${{ always() }}
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
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
- run: echo "::endgroup::"
if: ${{ always() }}

View File

@@ -17,7 +17,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- 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
- name: tag latest after success

View File

@@ -1,81 +0,0 @@
name: 'Tag Build and Push Docker image'
description: 'Tags verion in current repo, builds docker image and pushes it to registry'
inputs:
registry: # id of input
description: 'docker regisry host name'
required: true
default: 'gitea.phadric.de'
image_name:
description: 'name of the dockerimage'
required: true
default: ${{ github.repository }}
token:
description: 'repo auth token'
required: true
runs:
using: "composite"
steps:
- name: Checkout repository
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
with:
fetch-depth: '0'
- name: Bump version and push tag
id: tag
uses: phadric/github-tag-action@a5250a59655e9f4b0350407380a92c73948f2aec # master
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@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
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@34bb1b5886d06c161bf0dd9e169f03a52ff858fb # v1.35.0
id: cache
with:
image: ${{ inputs.registry }}/${{ inputs.image_name }}-cache
extra-cache-to: image-manifest=true
- name: Setup Docker buildx
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
- name: Log into registry ${{ inputs.registry }}
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
with:
registry: ${{ inputs.registry }}
username: ${{ github.actor }}
password: ${{ inputs.token }}
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
platforms: linux/amd64
labels: ${{ steps.meta.outputs.labels }}
cache-from: |
type=registry,ref=${{ inputs.registry }}/${{ inputs.image_name }}-cache:latest
type=registry,ref=${{ inputs.registry }}/${{ inputs.image_name }}-cache:${{ github.ref_name }}
${{ steps.cache.outputs.cache-from }}
cache-to: |
${{ steps.cache.outputs.cache-to }}
type=registry,ref=${{ inputs.registry }}/${{ inputs.image_name }}-cache:latest,mode=max,image-manifest=true