Files
almalinux/.github/workflows/docker.10.yaml
casjay 3a13118f60
Some checks failed
almalinux-10-dev / build-and-push (push) Failing after 8m27s
almalinux-8-dev / build-and-push (push) Failing after 41s
almalinux-8 / build-and-push (push) Failing after 1m49s
almalinux-9-dev / build-and-push (push) Failing after 50s
almalinux-9 / build-and-push (push) Failing after 1m28s
almalinux / build-and-push (push) Failing after 1m29s
almalinux-10 / build-and-push (push) Successful in 40m35s
🔧 Updated workflows 🔧
.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
2026-01-16 00:15:53 -05:00

87 lines
2.9 KiB
YAML

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
echo "COMMIT_ID=$(git rev-parse --short HEAD)" >> $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 <docker-admin@casjaysdev.pro>
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