From 641cb96096c134cdfb97dad26347317990804ba1 Mon Sep 17 00:00:00 2001 From: kokodev Date: Sun, 6 Oct 2024 16:07:36 -0700 Subject: [PATCH] Delete .github/workflows/docker.yaml --- .github/workflows/docker.yaml | 67 ----------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 .github/workflows/docker.yaml diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml deleted file mode 100644 index 615c71e11..000000000 --- a/.github/workflows/docker.yaml +++ /dev/null @@ -1,67 +0,0 @@ -name: Docker - -on: - push: - branches: - - develop - - 1.0-develop - pull_request: - branches: - - develop - - 1.0-develop - release: - types: - - published - -jobs: - push: - name: Push - runs-on: ubuntu-20.04 - if: "!contains(github.ref, 'develop') || (!contains(github.event.head_commit.message, 'skip docker') && !contains(github.event.head_commit.message, 'docker skip'))" - steps: - - name: Code checkout - uses: actions/checkout@v3 - - - name: Docker metadata - id: docker_meta - uses: docker/metadata-action@v5 - with: - images: ghcr.io/jexactyl/jexactyl - flavor: | - latest=false - tags: | - type=raw,value=latest,enable=${{ github.event_name == 'release' && github.event.action == 'published' && github.event.release.prerelease == false }} - type=ref,event=tag - type=ref,event=branch - - - name: Setup QEMU - uses: docker/setup-qemu-action@v3 - - - name: Setup Docker buildx - uses: docker/setup-buildx-action@v3 - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.REGISTRY_TOKEN }} - - - name: Update version - if: "github.event_name == 'release' && github.event.action == 'published'" - env: - REF: ${{ github.event.release.tag_name }} - run: | - sed -i "s/ 'version' => 'canary',/ 'version' => '${REF:1}',/" config/app.php - - - name: Build and Push - uses: docker/build-push-action@v3 - with: - context: . - file: ./Dockerfile - push: ${{ github.event_name != 'pull_request' }} - platforms: linux/amd64,linux/arm64 - labels: ${{ steps.docker_meta.outputs.labels }} - tags: ${{ steps.docker_meta.outputs.tags }} - cache-from: type=gha - cache-to: type=gha,mode=max