feat(ci): migrate to ci/cd v2
All checks were successful
Main / build (push) Successful in 2m28s

This commit is contained in:
RouxAntoine 2024-10-24 23:55:27 +02:00
parent 9b175aad08
commit 4d2ffc3bbd
Signed by: antoine
GPG Key ID: 098FB66FC0475E70
2 changed files with 22 additions and 7 deletions

View File

@ -3,19 +3,24 @@ name: Main
on:
push:
branches:
- main
- master
env:
REGISTRY_NAME: container.localdomain:5000
REGISTRY_NAME: container.localdomain
jobs:
build:
if: "contains(github.event.head_commit.message, vars.SKIP_CI_PREFIX) != true"
runs-on: docker
container:
image: catthehacker/ubuntu:act-22.04
steps:
- uses: RouxAntoine/checkout@v4.1.8
- name: Checkout repository
uses: https://antoine-roux.tk/projects/actions/checkout@v4.1.8
with:
fetch-depth: 0
fetch-tags: false
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
@ -25,15 +30,22 @@ jobs:
with:
config-inline: |
[registry."${{ env.REGISTRY_NAME }}"]
http = true
insecure = true
- name: Build and push
uses: docker/build-push-action@v6
env:
ACTIONS_RUNTIME_TOKEN: '' # See https://gitea.com/gitea/act_runner/issues/119
with:
context: .
push: true
tags: ${{ env.REGISTRY_NAME }}/dnscrypt-proxy:latest
platforms: |
linux/arm/v6
- name: Auto generate changelog
uses: https://antoine-roux.tk/projects/actions/auto-changie@v1.0.1
- name: Push changelog
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "${{ vars.SKIP_CI_PREFIX }} Push updated changelog"
file_pattern: "\\.changes/* CHANGELOG.md"

View File

@ -1,4 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true
"dependencyDashboard": true,
"extends": [
"local>config/renovate-config"
]
}