From e853596c911b272b4bdfc972566ae79e97dc7ae2 Mon Sep 17 00:00:00 2001 From: sim0n00ps Date: Sun, 4 May 2025 20:34:50 +0000 Subject: [PATCH] Delete .gitea/workflows/publish-docker.yml --- .gitea/workflows/publish-docker.yml | 43 ----------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .gitea/workflows/publish-docker.yml diff --git a/.gitea/workflows/publish-docker.yml b/.gitea/workflows/publish-docker.yml deleted file mode 100644 index 15a01f9..0000000 --- a/.gitea/workflows/publish-docker.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Publish Docker image - -on: - push: - tags: - - 'OFDLV*' - -jobs: - push_to_registry: - name: Push docker image to registry - runs-on: ubuntu-latest - steps: - - name: Extract version - id: version - run: | - VERSION="${GITHUB_REF_NAME#OFDLV}" - echo "Version: $VERSION" - echo "version=$VERSION" >> "$GITHUB_OUTPUT" - - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Login to ghcr - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push Docker image - uses: docker/build-push-action@v6 - with: - context: . - platforms: linux/amd64,linux/arm64 - push: true - tags: | - ghcr.io/${{ github.actor }}/of-dl:latest - ghcr.io/${{ github.actor }}/of-dl:${{ steps.version.outputs.version }} - build-args: | - VERSION=${{ steps.version.outputs.version }}