From 9247f4ad506d9cfd310fbbad92bbf4f66278b0f0 Mon Sep 17 00:00:00 2001 From: Philippe Loctaux Date: Thu, 28 Nov 2024 21:57:39 +0100 Subject: [PATCH] delete ci --- .gitea/workflows/ci.yml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml deleted file mode 100644 index 5eec730..0000000 --- a/.gitea/workflows/ci.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Build -on: - push: - branches: - - master - -jobs: - build-docker: - runs-on: node-16-bullseye - container: - image: ubuntu:act-22.04-philt3r - steps: - - name: get code - uses: actions/checkout@v3 - - name: QEMU - uses: docker/setup-qemu-action@v2 - - name: Docker Buildx - uses: docker/setup-buildx-action@v2 - with: - driver-opts: image=moby/buildkit:buildx-stable-1-philt3r - - name: Login to Container Registry - uses: docker/login-action@v2 - with: - registry: git.int.philt3r.eu - username: ${{ gitea.repository_owner }} - password: ${{ secrets.REGISTRY_PASSWORD }} - - name: Login to Container Registry x4m3rocks - uses: docker/login-action@v2 - with: - registry: registry-registry.y.z.x4m3.rocks - username: ${{ secrets.REGISTRY_X4M3_ROCKS_USERNAME }} - password: ${{ secrets.REGISTRY_X4M3_ROCKS_PASSWORD }} - - name: Build and push - uses: docker/build-push-action@v4 - env: - ACTIONS_RUNTIME_TOKEN: '' - with: - push: true - tags: git.int.philt3r.eu/${{ gitea.repository }}:latest,registry-registry.y.z.x4m3.rocks/${{ gitea.repository }}:latest -