From aec5736f5df6d758011a97e3da4f9230afbb289e Mon Sep 17 00:00:00 2001 From: Meezaan-ud-Din A Wal-Ikram Date: Sun, 20 Oct 2024 20:18:38 +0400 Subject: [PATCH] Remove 8.4 --- .github/workflows/8.4.unit.yml | 69 ---------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 .github/workflows/8.4.unit.yml diff --git a/.github/workflows/8.4.unit.yml b/.github/workflows/8.4.unit.yml deleted file mode 100644 index 7b98228..0000000 --- a/.github/workflows/8.4.unit.yml +++ /dev/null @@ -1,69 +0,0 @@ -name: Build Docker Images for PHP 8.4 with Nginx Unit -on: - workflow_dispatch: - branches: - - master - paths: - - "8/8.4/Dockerfile.nunit" - - "8/8.4/Dockerfile.nunit.dev" - push: - branches: - - "master" - paths: - - "8/8.4/Dockerfile.nunit" - - "8/8.4/Dockerfile.nunit.dev" -jobs: - docker-build-and-push: - runs-on: ubuntu-latest - steps: - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - ## Login to all 3 registries: DockerHub, GitHub Actions Container Registry, and Quay.io ## - - name: Login to DockerHub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Login to the GitHub Actions Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.GHCR_TOKEN }} - - name: Login to the Quay.io Container Registry - uses: docker/login-action@v3 - with: - registry: quay.io - username: ${{ secrets.QUAY_USERNAME }} - password: ${{ secrets.QUAY_PASSWORD }} - - name: Checkout code - uses: actions/checkout@v2 - ## Build and push the Docker image ## - - name: Build and push the Unit Production Image - uses: docker/build-push-action@v5 - with: - context: 8/8.4 - platforms: linux/amd64,linux/arm64 - file: 8/8.4/Dockerfile.nunit - build-args: | - PHP_VERSION=8.4 - push: true - tags: | - islamicnetwork/php:8.4-unit - ghcr.io/islamic-network/php:8.4-unit - quay.io/islamic-network/php:8.4-unit - - name: Build and push the Unit Development Image - uses: docker/build-push-action@v5 - with: - context: 8/8.4 - platforms: linux/amd64,linux/arm64 - file: 8/8.4/Dockerfile.nunit.dev - build-args: | - PHP_VERSION=8.4 - push: true - tags: | - islamicnetwork/php:8.4-unit-dev - ghcr.io/islamic-network/php:8.4-unit-dev - quay.io/islamic-network/php:8.4-unit-dev