2022-03-24 15:22:06 +00:00
|
|
|
# Based on https://github.com/docker/build-push-action
|
|
|
|
|
2022-03-24 17:08:17 +00:00
|
|
|
name: "Docker"
|
2022-03-24 15:22:06 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
release: # A GitHub release was published
|
|
|
|
types: [published]
|
2022-03-24 15:50:30 +00:00
|
|
|
workflow_dispatch: # A build was manually requested
|
2022-03-25 10:08:13 +00:00
|
|
|
workflow_call: # Another pipeline called us
|
2022-03-25 14:27:41 +00:00
|
|
|
secrets:
|
|
|
|
DOCKER_TOKEN:
|
|
|
|
required: true
|
2022-03-24 15:22:06 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
DOCKER_NAMESPACE: matrixdotorg
|
|
|
|
DOCKER_HUB_USER: dendritegithub
|
|
|
|
GHCR_NAMESPACE: matrix-org
|
|
|
|
PLATFORMS: linux/amd64,linux/arm64,linux/arm/v7
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
monolith:
|
|
|
|
name: Monolith image
|
|
|
|
runs-on: ubuntu-latest
|
2022-03-25 09:05:06 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
2022-11-03 13:57:44 +00:00
|
|
|
security-events: write # To upload Trivy sarif files
|
2022-03-24 15:22:06 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-11-02 14:04:08 +00:00
|
|
|
- name: Get release tag & build flags
|
2022-03-24 15:22:06 +00:00
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
2022-11-02 14:04:08 +00:00
|
|
|
run: |
|
|
|
|
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
2022-03-24 15:22:06 +00:00
|
|
|
- name: Set up QEMU
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/setup-qemu-action@v3
|
2022-03-24 15:22:06 +00:00
|
|
|
- name: Set up Docker Buildx
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2022-03-24 15:22:06 +00:00
|
|
|
- name: Login to Docker Hub
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/login-action@v3
|
2022-03-24 15:22:06 +00:00
|
|
|
with:
|
|
|
|
username: ${{ env.DOCKER_HUB_USER }}
|
|
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Login to GitHub Containers
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/login-action@v3
|
2022-03-24 15:22:06 +00:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
2022-03-25 09:05:06 +00:00
|
|
|
username: ${{ github.repository_owner }}
|
2022-03-24 15:22:06 +00:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-03-25 10:08:13 +00:00
|
|
|
- name: Build main monolith image
|
|
|
|
if: github.ref_name == 'main'
|
2022-03-24 15:22:06 +00:00
|
|
|
id: docker_build_monolith
|
2022-11-02 14:04:08 +00:00
|
|
|
uses: docker/build-push-action@v3
|
2022-03-24 15:22:06 +00:00
|
|
|
with:
|
2023-07-06 09:44:11 +01:00
|
|
|
cache-from: type=registry,ref=ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:buildcache
|
|
|
|
cache-to: type=registry,ref=ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:buildcache,mode=max
|
2022-03-24 15:22:06 +00:00
|
|
|
context: .
|
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
2022-03-24 15:50:30 +00:00
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-monolith:${{ github.ref_name }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:${{ github.ref_name }}
|
2022-03-24 15:22:06 +00:00
|
|
|
|
|
|
|
- name: Build release monolith image
|
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
2022-03-24 16:22:39 +00:00
|
|
|
id: docker_build_monolith_release
|
2022-11-02 14:04:08 +00:00
|
|
|
uses: docker/build-push-action@v3
|
2022-03-24 15:22:06 +00:00
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-monolith:latest
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-monolith:${{ env.RELEASE_VERSION }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:latest
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:${{ env.RELEASE_VERSION }}
|
|
|
|
|
2022-11-29 16:26:33 +00:00
|
|
|
- name: Run Trivy vulnerability scanner
|
|
|
|
uses: aquasecurity/trivy-action@master
|
|
|
|
with:
|
|
|
|
image-ref: ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-monolith:${{ github.ref_name }}
|
|
|
|
format: "sarif"
|
|
|
|
output: "trivy-results.sarif"
|
|
|
|
|
|
|
|
- name: Upload Trivy scan results to GitHub Security tab
|
|
|
|
uses: github/codeql-action/upload-sarif@v2
|
|
|
|
with:
|
|
|
|
sarif_file: "trivy-results.sarif"
|
|
|
|
|
2022-09-27 09:39:39 +01:00
|
|
|
demo-pinecone:
|
|
|
|
name: Pinecone demo image
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-11-02 14:04:08 +00:00
|
|
|
- name: Get release tag & build flags
|
2022-09-27 09:39:39 +01:00
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
2022-11-02 14:04:08 +00:00
|
|
|
run: |
|
|
|
|
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
2022-09-27 09:39:39 +01:00
|
|
|
- name: Set up QEMU
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/setup-qemu-action@v3
|
2022-09-27 09:39:39 +01:00
|
|
|
- name: Set up Docker Buildx
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2022-09-27 09:39:39 +01:00
|
|
|
- name: Login to Docker Hub
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/login-action@v3
|
2022-09-27 09:39:39 +01:00
|
|
|
with:
|
|
|
|
username: ${{ env.DOCKER_HUB_USER }}
|
|
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Login to GitHub Containers
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/login-action@v3
|
2022-09-27 09:39:39 +01:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-11-02 14:04:08 +00:00
|
|
|
- name: Build main Pinecone demo image
|
2022-09-27 09:39:39 +01:00
|
|
|
if: github.ref_name == 'main'
|
|
|
|
id: docker_build_demo_pinecone
|
2022-11-02 14:04:08 +00:00
|
|
|
uses: docker/build-push-action@v3
|
2022-09-27 09:39:39 +01:00
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-03 13:57:44 +00:00
|
|
|
file: ./build/docker/Dockerfile.demo-pinecone
|
2022-09-27 09:39:39 +01:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-pinecone:${{ github.ref_name }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-pinecone:${{ github.ref_name }}
|
|
|
|
|
2022-11-02 14:04:08 +00:00
|
|
|
- name: Build release Pinecone demo image
|
2022-09-27 09:39:39 +01:00
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
|
|
|
id: docker_build_demo_pinecone_release
|
2022-11-02 14:04:08 +00:00
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-03 13:57:44 +00:00
|
|
|
file: ./build/docker/Dockerfile.demo-pinecone
|
2022-11-02 14:04:08 +00:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-yggdrasil:latest
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-yggdrasil:${{ env.RELEASE_VERSION }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-yggdrasil:latest
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-yggdrasil:${{ env.RELEASE_VERSION }}
|
|
|
|
|
2022-11-02 14:09:19 +00:00
|
|
|
demo-yggdrasil:
|
|
|
|
name: Yggdrasil demo image
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-11-02 14:09:19 +00:00
|
|
|
- name: Get release tag & build flags
|
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
|
|
|
run: |
|
|
|
|
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
|
|
- name: Set up QEMU
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/setup-qemu-action@v3
|
2022-11-02 14:09:19 +00:00
|
|
|
- name: Set up Docker Buildx
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/setup-buildx-action@v3
|
2022-11-02 14:09:19 +00:00
|
|
|
- name: Login to Docker Hub
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/login-action@v3
|
2022-11-02 14:09:19 +00:00
|
|
|
with:
|
|
|
|
username: ${{ env.DOCKER_HUB_USER }}
|
|
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Login to GitHub Containers
|
2024-02-08 08:58:59 +00:00
|
|
|
uses: docker/login-action@v3
|
2022-11-02 14:09:19 +00:00
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2022-11-02 14:04:08 +00:00
|
|
|
- name: Build main Yggdrasil demo image
|
|
|
|
if: github.ref_name == 'main'
|
|
|
|
id: docker_build_demo_yggdrasil
|
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-03 13:57:44 +00:00
|
|
|
file: ./build/docker/Dockerfile.demo-yggdrasil
|
2022-11-02 14:04:08 +00:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-yggdrasil:${{ github.ref_name }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-yggdrasil:${{ github.ref_name }}
|
|
|
|
|
|
|
|
- name: Build release Yggdrasil demo image
|
|
|
|
if: github.event_name == 'release' # Only for GitHub releases
|
|
|
|
id: docker_build_demo_yggdrasil_release
|
|
|
|
uses: docker/build-push-action@v3
|
2022-09-27 09:39:39 +01:00
|
|
|
with:
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|
|
|
|
context: .
|
2022-11-03 13:57:44 +00:00
|
|
|
file: ./build/docker/Dockerfile.demo-yggdrasil
|
2022-09-27 09:39:39 +01:00
|
|
|
platforms: ${{ env.PLATFORMS }}
|
|
|
|
push: true
|
|
|
|
tags: |
|
2022-11-02 14:04:08 +00:00
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-yggdrasil:latest
|
|
|
|
${{ env.DOCKER_NAMESPACE }}/dendrite-demo-yggdrasil:${{ env.RELEASE_VERSION }}
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-yggdrasil:latest
|
|
|
|
ghcr.io/${{ env.GHCR_NAMESPACE }}/dendrite-demo-yggdrasil:${{ env.RELEASE_VERSION }}
|