Compare commits
5 Commits
34c8aba17b
..
0.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 341f59e95f | |||
| ad7d57bb83 | |||
| f528ce346b | |||
| 23c1b967d5 | |||
| afaaf59b13 |
@@ -47,8 +47,6 @@ jobs:
|
||||
matrix:
|
||||
# Prepared for future multi-arch support in the future, as soon as ACT has support for dynamic matrixes.
|
||||
arch: [amd64]
|
||||
needs:
|
||||
- test
|
||||
runs-on:
|
||||
- ubuntu-latest
|
||||
- linux_${{ matrix.arch }}
|
||||
@@ -65,14 +63,16 @@ jobs:
|
||||
context: ${{ inputs.context }}
|
||||
file: ${{ inputs.dockerfile }}
|
||||
platforms: linux/${{ matrix.arch }}
|
||||
push: ${{ !inputs.dry-run }}
|
||||
push: ${{ inputs.dry-run == false || inputs.dry-run == 'false' }}
|
||||
provenance: false
|
||||
tags: |
|
||||
${{ inputs.registry }}/${{ inputs.repo-name }}:${{ inputs.tag }}-${{ matrix.arch }}
|
||||
cache-from: type=registry,ref=${{ inputs.registry }}/${{ inputs.repo-name }}:cache-${{ matrix.arch }}
|
||||
cache-to: type=registry,ref=${{ inputs.registry }}/${{ inputs.repo-name }}:cache-${{ matrix.arch }},mode=max
|
||||
|
||||
create_manifest:
|
||||
name: Create manifest
|
||||
if: ${{ !inputs.dry-run }}
|
||||
if: ${{ inputs.dry-run == false || inputs.dry-run == 'false' }}
|
||||
needs:
|
||||
- build_and_push
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- ".gitea/workflows/*.yaml"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Increment tag
|
||||
id: tag
|
||||
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@ef0c23189db33220a73022d8c29a27709d0df440 # 0.1.32
|
||||
with:
|
||||
token: ${{ secrets.GITEA_TOKEN }}
|
||||
- name: Push tag
|
||||
uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@38c1bbd8bad3e7965744d03de85faa4a5b808d1b # 0.2.4
|
||||
with:
|
||||
tag: ${{ steps.tag.outputs.new-tag }}
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": ["local>t.behrendt/renovate-configs:action"]
|
||||
}
|
||||
Reference in New Issue
Block a user