From 5753faf22f4ce8bd6ffa4e3d394d842a911a3d17 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 12 May 2025 22:40:46 +0200 Subject: [PATCH] fix(ci): replace drone with gitea actions --- .gitea/workflows/build.yaml | 49 ----------------------------------- .gitea/workflows/release.yaml | 4 +-- 2 files changed, 2 insertions(+), 51 deletions(-) delete mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml deleted file mode 100644 index 5284f5c..0000000 --- a/.gitea/workflows/build.yaml +++ /dev/null @@ -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 \ - . diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index e08a97a..388f65c 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -2,8 +2,8 @@ name: Release on: push: - tags: - - "**" + branches: + - master jobs: push-arm64: