mirror of
https://github.com/ConjureETS/Site.git
synced 2026-03-24 09:40:57 +00:00
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
name: Docker build and push
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
REGISTRY: ghcr.io/conjureets
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Log in to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract Docker metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ env.REGISTRY }}/conjure-site
|
|
tags: |
|
|
type=ref,event=branch
|
|
type=sha
|
|
type=raw,value=latest,enable=${{ github.ref_name == 'master' }}
|
|
type=raw,value=${{ github.head_ref }},enable=${{ github.event_name == 'pull_request' }}
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: Dockerfile
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
cache-from: type=registry,ref=${{ env.REGISTRY }}/conjure-site:cache
|
|
cache-to: type=registry,ref=${{ env.REGISTRY }}/conjure-site:cache,mode=max |