6 Commits
Author SHA1 Message Date
andreas 3fb3056ecd Update .github/workflows/lint.yml
Actionlint / build (push) Successful in 26s
2026-07-17 14:20:21 +03:00
andreas eaaf42fb64 Update .github/workflows/docker-build.yml
Actionlint / build (push) Failing after 23s
2026-07-17 14:10:07 +03:00
andreas 013107eece Update .github/workflows/docker-build.yml
Actionlint / build (push) Failing after 24s
2026-07-17 14:08:47 +03:00
andreas 9b1839b144 Update .github/workflows/lint.yml
Actionlint / build (push) Failing after 23s
2026-07-17 14:07:48 +03:00
andreas cab1e1921f Update .github/workflows/lint.yml 2026-07-17 14:06:06 +03:00
andreas ef4d89d896 Update .github/workflows/docker-build.yml
Actionlint / build (push) Successful in 23s
2026-07-17 13:36:49 +03:00
2 changed files with 3 additions and 4 deletions
+1 -4
View File
@@ -1,17 +1,14 @@
name: 'Tag Build and Push Docker image' name: 'Tag Build and Push Docker image'
description: 'Tags version in current repo, builds docker image and pushes it to registry'
on: on:
workflow_call: workflow_call:
inputs: inputs:
registry: # id of input registry: # id of input
description: 'docker regisry host name' description: 'docker regisry host name'
required: true
type: string type: string
default: 'gitea.phadric.de' default: 'gitea.phadric.de'
cache-registry: # id of input cache-registry: # id of input
description: 'docker regisry host name' description: 'docker regisry host name'
required: true
default: 'imagecache.phadric.de' default: 'imagecache.phadric.de'
type: string type: string
image_name: image_name:
@@ -43,7 +40,7 @@ jobs:
- name: Bump version and push tag - name: Bump version and push tag
id: tag id: tag
if: ${{ inputs.tag == 'true' }} if: ${{ inputs.tag == 'true' }}
uses: phadric/github-tag-action@a5250a59655e9f4b0350407380a92c73948f2aec # master uses: anothrNick/github-tag-action@4ed44965e0db8dab2b466a16da04aec3cc312fd8 # 1.75.0
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # if you don't want to set write permissions use a PAT token GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # if you don't want to set write permissions use a PAT token
DEFAULT_BUMP: patch DEFAULT_BUMP: patch
+2
View File
@@ -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