Compare commits
13 Commits
separate_c
...
dispatch
| Author | SHA1 | Date | |
|---|---|---|---|
| 69ee3e8b14 | |||
| f8643ac173 | |||
| 9d6404c2f4 | |||
| e5a635c741 | |||
| e04f237647 | |||
| de2b1bbbac | |||
| a136f6982a | |||
| d4c4cd3dfb | |||
| 683fa5c055 | |||
| 046a225e7e | |||
| e5b46d6385 | |||
| 69cad58d3f | |||
| 5195bbca59 |
72
action.yml → .github/workflows/action.yml
vendored
72
action.yml → .github/workflows/action.yml
vendored
@@ -1,32 +1,39 @@
|
|||||||
name: 'Tag Build and Push Docker image'
|
name: Docker Build
|
||||||
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'
|
|
||||||
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
|
|
||||||
|
|
||||||
runs:
|
on:
|
||||||
using: "composite"
|
workflow_call:
|
||||||
steps:
|
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"
|
- run: echo "::group::Checkout repository"
|
||||||
|
if: ${{ always() }}
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
|
||||||
with:
|
with:
|
||||||
fetch-depth: '0'
|
fetch-depth: '0'
|
||||||
- run: echo "::endgroup::"
|
- run: echo "::endgroup::"
|
||||||
|
if: ${{ always() }}
|
||||||
- run: echo "::group::Bump version and push tag"
|
- run: echo "::group::Bump version and push tag"
|
||||||
|
if: ${{ always() }}
|
||||||
- name: Bump version and push tag
|
- name: Bump version and push tag
|
||||||
id: tag
|
id: tag
|
||||||
uses: phadric/github-tag-action@a5250a59655e9f4b0350407380a92c73948f2aec # master
|
uses: phadric/github-tag-action@a5250a59655e9f4b0350407380a92c73948f2aec # master
|
||||||
@@ -38,10 +45,12 @@ runs:
|
|||||||
PRERELEASE: true
|
PRERELEASE: true
|
||||||
PRERELEASE_SUFFIX: ${{ github.ref_name }}
|
PRERELEASE_SUFFIX: ${{ github.ref_name }}
|
||||||
- run: echo "::endgroup::"
|
- run: echo "::endgroup::"
|
||||||
|
if: ${{ always() }}
|
||||||
- run: echo "::group::Extract Docker metadata"
|
- run: echo "::group::Extract Docker metadata"
|
||||||
|
if: ${{ always() }}
|
||||||
- name: Extract Docker metadata
|
- name: Extract Docker metadata
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5.7.0
|
uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
|
||||||
with:
|
with:
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=${{ github.ref_name == 'main' || github.ref_name == 'master' }}
|
latest=${{ github.ref_name == 'main' || github.ref_name == 'master' }}
|
||||||
@@ -54,29 +63,37 @@ runs:
|
|||||||
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 }}
|
||||||
- run: echo "::endgroup::"
|
- run: echo "::endgroup::"
|
||||||
|
if: ${{ always() }}
|
||||||
- run: echo "::group::Configure build Cache"
|
- run: echo "::group::Configure build Cache"
|
||||||
|
if: ${{ always() }}
|
||||||
- uses: int128/docker-build-cache-config-action@338206c80bf9eeb2b9694b7b4fc8c247c317e2a8 # v1.38.0
|
- uses: int128/docker-build-cache-config-action@338206c80bf9eeb2b9694b7b4fc8c247c317e2a8 # v1.38.0
|
||||||
id: cache
|
id: cache
|
||||||
with:
|
with:
|
||||||
image: ${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache
|
image: ${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache
|
||||||
extra-cache-to: image-manifest=true
|
extra-cache-to: image-manifest=true
|
||||||
- run: echo "::endgroup::"
|
- run: echo "::endgroup::"
|
||||||
|
if: ${{ always() }}
|
||||||
- run: echo "::group::Setup Buildx"
|
- run: echo "::group::Setup Buildx"
|
||||||
|
if: ${{ always() }}
|
||||||
- name: Setup Docker buildx
|
- name: Setup Docker buildx
|
||||||
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
|
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
|
||||||
- run: echo "::endgroup::"
|
- run: echo "::endgroup::"
|
||||||
|
if: ${{ always() }}
|
||||||
- run: echo "::group::Log into Registry ${{ inputs.registry }}"
|
- run: echo "::group::Log into Registry ${{ inputs.registry }}"
|
||||||
|
if: ${{ always() }}
|
||||||
- name: Log into registry ${{ inputs.registry }}
|
- name: Log into registry ${{ inputs.registry }}
|
||||||
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
|
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
|
||||||
with:
|
with:
|
||||||
registry: ${{ inputs.registry }}
|
registry: ${{ inputs.registry }}
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ inputs.token }}
|
password: ${{ inputs.token }}
|
||||||
- run: echo "::endgroup::"
|
- run: echo "::endgroup::"
|
||||||
|
if: ${{ always() }}
|
||||||
- run: echo "::group::Build and Push docker image"
|
- run: echo "::group::Build and Push docker image"
|
||||||
|
if: ${{ always() }}
|
||||||
- name: Build and push Docker image
|
- name: Build and push Docker image
|
||||||
id: build-and-push
|
id: build-and-push
|
||||||
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
|
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
@@ -90,4 +107,5 @@ runs:
|
|||||||
cache-to: |
|
cache-to: |
|
||||||
${{ steps.cache.outputs.cache-to }}
|
${{ steps.cache.outputs.cache-to }}
|
||||||
type=registry,ref=${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache:latest,mode=max,image-manifest=true
|
type=registry,ref=${{ inputs.cache-registry }}/${{ inputs.image_name }}-cache:latest,mode=max,image-manifest=true
|
||||||
- run: echo "::endgroup::"
|
- run: echo "::endgroup::"
|
||||||
|
if: ${{ always() }}
|
||||||
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
@@ -17,7 +17,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
|
||||||
- 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: tag latest after success
|
- name: tag latest after success
|
||||||
|
|||||||
Reference in New Issue
Block a user