fix(ci): replace drone with gitea actions
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 4s
Release / push-amd64 (push) Successful in 1m1s
Release / push-arm64 (push) Successful in 1m21s
Release / push-manifest (push) Successful in 15s
Release / sync-to-hub-docker-io (push) Successful in 22s

This commit is contained in:
Markus Pesch 2025-05-12 22:40:46 +02:00
parent b56e7f322a
commit 5753faf22f
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
2 changed files with 2 additions and 51 deletions

View File

@ -1,49 +0,0 @@
name: Build
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- master
workflow_dispatch: {}
jobs:
build-arm64:
runs-on: ubuntu-latest-arm64
steps:
- uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.10.0
- name: Build image
run: |
TAG=latest
docker buildx build \
--platform linux/arm64 \
--file Dockerfile \
--provenance false \
--tag git.cryptic.systems/volker.raschek/network-tools:${TAG}-arm64 \
.
build-amd64:
runs-on: ubuntu-latest-amd64
steps:
- uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.10.0
- name: Build image
run: |
TAG=latest
docker buildx build \
--platform linux/amd64 \
--file Dockerfile \
--provenance false \
--tag git.cryptic.systems/volker.raschek/network-tools:${TAG}-amd64 \
.

View File

@ -2,8 +2,8 @@ name: Release
on: on:
push: push:
tags: branches:
- "**" - master
jobs: jobs:
push-arm64: push-arm64: