From e6444c8e9e7c9e03e18ae2dc9bcb4b233058a12a Mon Sep 17 00:00:00 2001 From: casjay Date: Thu, 4 Jun 2026 16:21:45 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Deleted=20workflow=20files=20?= =?UTF-8?q?=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .gitea/workflows/docker.10-dev.yaml .gitea/workflows/docker.10.yaml .gitea/workflows/docker.8-dev.yaml .gitea/workflows/docker.8.yaml .gitea/workflows/docker.9-dev.yaml .gitea/workflows/docker.9.yaml .gitea/workflows/docker.yaml .github/workflows/docker.10-dev.yaml .github/workflows/docker.10.yaml .github/workflows/docker.8-dev.yaml .github/workflows/docker.8.yaml .github/workflows/docker.9-dev.yaml .github/workflows/docker.9.yaml .github/workflows/docker.yaml --- .gitea/workflows/docker.10-dev.yaml | 84 --------------------------- .gitea/workflows/docker.10.yaml | 84 --------------------------- .gitea/workflows/docker.8-dev.yaml | 84 --------------------------- .gitea/workflows/docker.8.yaml | 84 --------------------------- .gitea/workflows/docker.9-dev.yaml | 84 --------------------------- .gitea/workflows/docker.9.yaml | 84 --------------------------- .gitea/workflows/docker.yaml | 85 --------------------------- .github/workflows/docker.10-dev.yaml | 85 --------------------------- .github/workflows/docker.10.yaml | 85 --------------------------- .github/workflows/docker.8-dev.yaml | 85 --------------------------- .github/workflows/docker.8.yaml | 85 --------------------------- .github/workflows/docker.9-dev.yaml | 85 --------------------------- .github/workflows/docker.9.yaml | 85 --------------------------- .github/workflows/docker.yaml | 86 ---------------------------- 14 files changed, 1185 deletions(-) delete mode 100644 .gitea/workflows/docker.10-dev.yaml delete mode 100644 .gitea/workflows/docker.10.yaml delete mode 100644 .gitea/workflows/docker.8-dev.yaml delete mode 100644 .gitea/workflows/docker.8.yaml delete mode 100644 .gitea/workflows/docker.9-dev.yaml delete mode 100644 .gitea/workflows/docker.9.yaml delete mode 100644 .gitea/workflows/docker.yaml delete mode 100644 .github/workflows/docker.10-dev.yaml delete mode 100644 .github/workflows/docker.10.yaml delete mode 100644 .github/workflows/docker.8-dev.yaml delete mode 100644 .github/workflows/docker.8.yaml delete mode 100644 .github/workflows/docker.9-dev.yaml delete mode 100644 .github/workflows/docker.9.yaml delete mode 100644 .github/workflows/docker.yaml diff --git a/.gitea/workflows/docker.10-dev.yaml b/.gitea/workflows/docker.10-dev.yaml deleted file mode 100644 index 55a6b07..0000000 --- a/.gitea/workflows/docker.10-dev.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: almalinux-10-dev - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - 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 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.10-dev - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=10-dev - IMAGE_REPO=casjaysdev/almalinux - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=10-kitten - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/almalinux - org.opencontainers.image.description=Containerized version of casjaysdev/almalinux - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=10-dev - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/almalinux:10-dev diff --git a/.gitea/workflows/docker.10.yaml b/.gitea/workflows/docker.10.yaml deleted file mode 100644 index f5469ed..0000000 --- a/.gitea/workflows/docker.10.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: almalinux-10 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - 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 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.10 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=10 - IMAGE_REPO=casjaysdev/almalinux - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=10-kitten - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/almalinux - org.opencontainers.image.description=Containerized version of casjaysdev/almalinux - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=10 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/almalinux:10 diff --git a/.gitea/workflows/docker.8-dev.yaml b/.gitea/workflows/docker.8-dev.yaml deleted file mode 100644 index 99671b9..0000000 --- a/.gitea/workflows/docker.8-dev.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: almalinux-8-dev - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - 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 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.8-dev - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=8-dev - IMAGE_REPO=casjaysdev/almalinux - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=8 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/almalinux - org.opencontainers.image.description=Containerized version of casjaysdev/almalinux - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=8-dev - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/almalinux:8-dev diff --git a/.gitea/workflows/docker.8.yaml b/.gitea/workflows/docker.8.yaml deleted file mode 100644 index ec0b2f7..0000000 --- a/.gitea/workflows/docker.8.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: almalinux-8 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - 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 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.8 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=8 - IMAGE_REPO=casjaysdev/almalinux - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=8 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/almalinux - org.opencontainers.image.description=Containerized version of casjaysdev/almalinux - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=8 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/almalinux:8 diff --git a/.gitea/workflows/docker.9-dev.yaml b/.gitea/workflows/docker.9-dev.yaml deleted file mode 100644 index 2591c49..0000000 --- a/.gitea/workflows/docker.9-dev.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: almalinux-9-dev - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - 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 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.9-dev - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=9-dev - IMAGE_REPO=casjaysdev/almalinux - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=9 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/almalinux - org.opencontainers.image.description=Containerized version of casjaysdev/almalinux - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=9-dev - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/almalinux:9-dev diff --git a/.gitea/workflows/docker.9.yaml b/.gitea/workflows/docker.9.yaml deleted file mode 100644 index 76457f1..0000000 --- a/.gitea/workflows/docker.9.yaml +++ /dev/null @@ -1,84 +0,0 @@ -name: almalinux-9 - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - 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 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile.9 - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=9 - IMAGE_REPO=casjaysdev/almalinux - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=9 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/almalinux - org.opencontainers.image.description=Containerized version of casjaysdev/almalinux - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=9 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/almalinux:9 diff --git a/.gitea/workflows/docker.yaml b/.gitea/workflows/docker.yaml deleted file mode 100644 index fc7ad58..0000000 --- a/.gitea/workflows/docker.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: almalinux - -on: - push: - branches: - - main - - master - schedule: - - cron: '0 2 2 * *' - -jobs: - build-and-push: - runs-on: act_runner - container: - image: catthehacker/ubuntu:act-latest - env: - RUNNER_TOOL_CACHE: /toolcache - 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 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - password: ${{ secrets.DOCKER_TOKEN }} - username: ${{ secrets.DOCKER_USERNAME }} - registry: docker.io - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - file: ./Dockerfile - platforms: | - linux/amd64 - linux/arm64 - push: true - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=latest - IMAGE_REPO=casjaysdev/almalinux - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=latest - CONTAINER_VERSION=USE_DATE - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=casjaysdev/almalinux - org.opencontainers.image.description=Containerized version of casjaysdev/almalinux - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=latest - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - docker.io/casjaysdev/almalinux:latest - docker.io/casjaysdev/almalinux:${{ steps.meta.outputs.DATE_TAG }} diff --git a/.github/workflows/docker.10-dev.yaml b/.github/workflows/docker.10-dev.yaml deleted file mode 100644 index c3e84cd..0000000 --- a/.github/workflows/docker.10-dev.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: almalinux-10-dev - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.10-dev - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=10-dev - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=10-kitten - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=10-dev - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:10-dev diff --git a/.github/workflows/docker.10.yaml b/.github/workflows/docker.10.yaml deleted file mode 100644 index f35c3a7..0000000 --- a/.github/workflows/docker.10.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: almalinux-10 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.10 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=10 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=10-kitten - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=10 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:10 diff --git a/.github/workflows/docker.8-dev.yaml b/.github/workflows/docker.8-dev.yaml deleted file mode 100644 index 85681f0..0000000 --- a/.github/workflows/docker.8-dev.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: almalinux-8-dev - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.8-dev - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=8-dev - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=8 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=8-dev - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:8-dev diff --git a/.github/workflows/docker.8.yaml b/.github/workflows/docker.8.yaml deleted file mode 100644 index 2f9fb9d..0000000 --- a/.github/workflows/docker.8.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: almalinux-8 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.8 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=8 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=8 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=8 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:8 diff --git a/.github/workflows/docker.9-dev.yaml b/.github/workflows/docker.9-dev.yaml deleted file mode 100644 index 424d543..0000000 --- a/.github/workflows/docker.9-dev.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: almalinux-9-dev - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.9-dev - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=9-dev - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=9 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=9-dev - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:9-dev diff --git a/.github/workflows/docker.9.yaml b/.github/workflows/docker.9.yaml deleted file mode 100644 index c435561..0000000 --- a/.github/workflows/docker.9.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: almalinux-9 - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile.9 - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=9 - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=9 - CONTAINER_VERSION= - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=9 - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:9 diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml deleted file mode 100644 index 7fb89c4..0000000 --- a/.github/workflows/docker.yaml +++ /dev/null @@ -1,86 +0,0 @@ -name: almalinux - -on: - push: - branches: - - main - - master - pull_request: - schedule: - - cron: '0 2 2 * *' - workflow_dispatch: - -jobs: - build-and-push: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Get Meta - id: meta - run: | - echo "BUILD_DATE=$(date +'%Y%m%d%H%M')" >> $GITHUB_OUTPUT - echo "DATE_TAG=$(date +'%y%m')" >> $GITHUB_OUTPUT - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v5 - with: - context: . - file: ./Dockerfile - platforms: | - linux/amd64 - linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - provenance: false - build-args: | - IMAGE_NAME=almalinux - IMAGE_VERSION=latest - IMAGE_REPO=${{ github.repository }} - PHP_SERVER=almalinux - BUILD_DATE=${{ steps.meta.outputs.BUILD_DATE }} - BUILD_VERSION=${{ steps.meta.outputs.BUILD_DATE }} - PULL_URL=almalinux - DISTRO_VERSION=latest - CONTAINER_VERSION=USE_DATE - TIMEZONE=America/New_York - LANGUAGE=en_US.UTF-8 - PHP_VERSION=system - NODE_VERSION=system - NODE_MANAGER=system - SERVICE_PORT= - EXPOSE_PORTS= - WWW_ROOT_DIR=/usr/local/share/httpd/default - DEFAULT_FILE_DIR=/usr/local/share/template-files - DEFAULT_DATA_DIR=/usr/local/share/template-files/data - DEFAULT_CONF_DIR=/usr/local/share/template-files/config - DEFAULT_TEMPLATE_DIR=/usr/local/share/template-files/defaults - annotations: | - org.opencontainers.image.title=${{ github.repository }} - org.opencontainers.image.description=Containerized version of ${{ github.repository }} - org.opencontainers.image.vendor=CasjaysDev - org.opencontainers.image.authors=CasjaysDev - org.opencontainers.image.url=https://github.com/${{ github.repository }} - org.opencontainers.image.source=https://github.com/${{ github.repository }} - org.opencontainers.image.version=latest - org.opencontainers.image.revision=${{ github.sha }} - org.opencontainers.image.created=${{ github.event.head_commit.timestamp }} - tags: | - ghcr.io/${{ github.repository }}:latest - ghcr.io/${{ github.repository }}:${{ steps.meta.outputs.DATE_TAG }}