feat(core/models): implement server members model #199
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Test & Publish | |
on: | |
push: | |
branches: | |
- "master" | |
tags: | |
- "*" | |
paths-ignore: | |
- ".github/**" | |
- "!.github/workflows/docker.yml" | |
- ".vscode/**" | |
- ".gitignore" | |
- "LICENSE" | |
- "README" | |
pull_request: | |
branches: | |
- "master" | |
paths: | |
- "Dockerfile" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
base: | |
runs-on: ubuntu-latest | |
name: Build base image | |
steps: | |
# Configure build environment | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
# Authenticate with GHCR | |
- name: Login to Github Container Registry | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build base image | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: ${{ github.event_name != 'pull_request' }} | |
platforms: linux/amd64,linux/arm64 | |
tags: ghcr.io/${{ github.repository_owner }}/base:latest | |
cache-from: type=gha,scope=buildx-base-multi-arch | |
cache-to: type=gha,scope=buildx-base-multi-arch,mode=max | |
publish: | |
needs: [base] | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' | |
strategy: | |
matrix: | |
project: [delta, bonfire] | |
name: Build ${{ matrix.project }} image | |
steps: | |
# Configure build environment | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
# Authenticate with Docker Hub and GHCR | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
registry: docker.io | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to Github Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
# Resolve the correct project | |
- uses: kanga333/variable-mapper@master | |
id: export | |
with: | |
key: "${{ matrix.project }}" | |
map: | | |
{ | |
"delta": { | |
"path": "crates/delta", | |
"tag": "${{ github.repository_owner }}/server" | |
}, | |
"bonfire": { | |
"path": "crates/bonfire", | |
"tag": "${{ github.repository_owner }}/bonfire" | |
} | |
} | |
export_to: output | |
# Configure metadata | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
docker.io/${{ steps.export.outputs.tag }} | |
ghcr.io/${{ steps.export.outputs.tag }} | |
# Build crate image | |
- name: Publish | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
file: ${{ steps.export.outputs.path }}/Dockerfile | |
tags: ${{ steps.meta.outputs.tags }} | |
build-args: | | |
BASE_IMAGE=ghcr.io/${{ github.repository_owner }}/base:latest | |
labels: ${{ steps.meta.outputs.labels }} |