S2OJ/.github/workflows/build.yml

78 lines
2.0 KiB
YAML
Raw Normal View History

2022-09-18 14:14:35 +00:00
name: Build & Push Docker Images
on:
push:
branches:
2023-01-20 09:54:49 +00:00
- master
pull_request:
branches:
- master
2022-09-18 14:14:35 +00:00
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_BASENAME: ${{ github.repository }}
jobs:
2023-01-20 09:54:49 +00:00
build:
name: Build Image
2022-09-18 14:14:35 +00:00
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
2023-01-20 09:54:49 +00:00
strategy:
matrix:
include:
- image_name: db
context: db
2023-01-22 08:21:31 +00:00
dockerfile: db/Dockerfile
2023-01-20 09:54:49 +00:00
- image_name: judger
context: judger
2023-01-22 08:21:31 +00:00
dockerfile: judger/Dockerfile
2023-01-20 09:54:49 +00:00
- image_name: remote-judger
context: remote_judger
2023-01-22 08:21:31 +00:00
dockerfile: remote_judger/Dockerfile
2023-01-20 09:54:49 +00:00
- image_name: web
context: .
dockerfile: web/Dockerfile
fail-fast: false
2022-09-18 14:14:35 +00:00
steps:
- name: Checkout repository
uses: actions/checkout@v3
2022-09-21 05:27:01 +00:00
- name: Replace version
run: |
sed -i "s/'s2oj-version' => 'dev'/'s2oj-version' => '$(echo "${{ github.sha }}" | cut -c1-7)'/g" web/app/.default-config.php
2022-09-18 14:14:35 +00:00
- name: Log in to the Container registry
2023-01-22 08:21:31 +00:00
uses: docker/login-action@v2.1.0
2022-09-18 14:14:35 +00:00
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
2023-01-22 08:21:31 +00:00
uses: docker/metadata-action@v4.3.0
2022-09-18 14:14:35 +00:00
with:
2023-01-20 09:54:49 +00:00
images: ${{ env.REGISTRY }}/${{ env.IMAGE_BASENAME }}-${{ matrix.image_name }}
2022-09-18 14:14:35 +00:00
tags: |
2022-09-19 12:25:22 +00:00
latest
2022-09-18 14:14:35 +00:00
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
2022-09-19 12:25:22 +00:00
type=sha,prefix=
2022-09-18 14:14:35 +00:00
- name: Build and push Docker image
2023-01-22 08:21:31 +00:00
uses: docker/build-push-action@v3.3.0
2022-09-18 14:14:35 +00:00
with:
2023-01-20 09:54:49 +00:00
context: ${{ matrix.context }}
file: ${{ matrix.dockerfile }}
push: ${{ github.event_name == 'push' }}
2022-09-18 14:14:35 +00:00
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}