From ccd2525f62101438ef03276a432ecb2295483fac Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Wed, 30 Oct 2024 05:02:34 +0000 Subject: [PATCH] =?UTF-8?q?.gitea/workflows/build=5Fpush=5Fgitea.yml=20gel?= =?UTF-8?q?=C3=B6scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build_push_gitea.yml | 65 --------------------------- 1 file changed, 65 deletions(-) delete mode 100644 .gitea/workflows/build_push_gitea.yml diff --git a/.gitea/workflows/build_push_gitea.yml b/.gitea/workflows/build_push_gitea.yml deleted file mode 100644 index ff8b256..0000000 --- a/.gitea/workflows/build_push_gitea.yml +++ /dev/null @@ -1,65 +0,0 @@ -name: Create postgresql docker image -run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 -on: - push: - branches: - - main - paths: - - "Dockerfile" - -jobs: - Explore-Gitea-Actions: - runs-on: ubuntu-latest - env: - REGISTRY: git.cooltux.net - REGISTRY_INTERN: registry.tuxnet.lan - IMAGE: web/dokuwiki - DOCKER_ORG: ${{ secrets.DOCKER_USERNAME }} - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker BuildX - uses: docker/setup-buildx-action@v2 - with: # replace it with your local IP - config-inline: | - [registry."git.cooltux.net"] - http = false - insecure = false - [registry."registry.tuxnet.lan"] - http = true - insecure = true - - - name: Login to DockerHub - uses: docker/login-action@v2 - with: - registry: ${{ env.REGISTRY }} # replace it with your local IP - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Get Meta - id: meta - run: | - echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT - - - name: Set Docker Version - id: get_version - run: | - DOCKER_VERSION=$(grep -oP '(?<=org.opencontainers.image.ref.name=").*\d' Dockerfile) - echo "Docker version: $DOCKER_VERSION" - echo "::set-output name=tag::$DOCKER_VERSION" - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile - platforms: | - linux/amd64 - push: true - tags: | - ${{ env.REGISTRY }}/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.get_version.outputs.tag }} - ${{ env.REGISTRY_INTERN }}/${{ env.IMAGE }}:${{ steps.get_version.outputs.tag }}