runner-images/.gitea/workflows/php-8.2.yaml

41 lines
993 B
YAML
Raw Normal View History

2024-07-11 18:56:31 +00:00
name: Build and Push Image
on:
2024-07-15 16:21:50 +00:00
schedule:
- cron: "@weekly"
2024-07-11 18:56:31 +00:00
push:
2024-07-12 05:27:45 +00:00
branches:
- main
2024-07-11 18:56:31 +00:00
paths:
- .gitea/workflows/php-8.2.yaml
- images/actions/php-8.2/**
jobs:
build:
name: Build and push image
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
2024-08-15 09:49:31 +00:00
uses: https://git.kjan.de/actions/checkout@v4
2024-07-11 18:56:31 +00:00
- name: Set up Docker Buildx
2024-08-15 10:05:10 +00:00
uses: https://git.kjan.de/actions/setup-buildx-action@v3
2024-07-11 18:56:31 +00:00
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: git.kjan.de
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ./images/actions/php-8.2
push: true
tags: |
git.kjan.de/actions/php-8.2:latest
git.kjan.de/actions/php-8.2:${{ gitea.run_number }}