feature: configure changelog generation and migrate to https container registry
Some checks failed
Main / build (push) Failing after 4m14s
Some checks failed
Main / build (push) Failing after 4m14s
This commit is contained in:
parent
896c67ccec
commit
b216b85160
22
.github/workflows/main.yaml
vendored
22
.github/workflows/main.yaml
vendored
@ -6,30 +6,31 @@ on:
|
|||||||
- master
|
- master
|
||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY_NAME: container.localdomain:5000
|
REGISTRY_NAME: container.localdomain
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
if: "contains(github.event.head_commit.message, 'CI') != true"
|
||||||
|
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
|
||||||
image: catthehacker/ubuntu:act-22.04
|
|
||||||
steps:
|
steps:
|
||||||
- uses: RouxAntoine/checkout@v4.1.8
|
- uses: RouxAntoine/checkout@v4.1.8
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
fetch-tags: false
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3.3.0
|
uses: docker/setup-buildx-action@v3.6.1
|
||||||
with:
|
with:
|
||||||
config-inline: |
|
config-inline: |
|
||||||
[registry."${{ env.REGISTRY_NAME }}"]
|
[registry."${{ env.REGISTRY_NAME }}"]
|
||||||
http = true
|
insecure = true
|
||||||
|
|
||||||
- name: Build and push
|
- name: Build and push
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
env:
|
|
||||||
ACTIONS_RUNTIME_TOKEN: '' # See https://gitea.com/gitea/act_runner/issues/119
|
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
@ -38,3 +39,10 @@ jobs:
|
|||||||
linux/arm/v6
|
linux/arm/v6
|
||||||
linux/amd64
|
linux/amd64
|
||||||
linux/arm64
|
linux/arm64
|
||||||
|
|
||||||
|
- uses: RouxAntoine/auto-changie@v1.0.1
|
||||||
|
|
||||||
|
- name: Push changelog
|
||||||
|
uses: stefanzweifel/git-auto-commit-action@v5
|
||||||
|
with:
|
||||||
|
commit_message: "CI: Push updated changelog"
|
||||||
|
Loading…
Reference in New Issue
Block a user