2023-02-19 12:21:45 +01:00
|
|
|
name: Container image - Production
|
2022-12-19 21:21:04 +01:00
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
|
|
# They are provided by a third-party and are governed by
|
|
|
|
# separate terms of service, privacy policy, and support
|
|
|
|
# documentation.
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
paths-ignore:
|
|
|
|
- '.github/**'
|
|
|
|
- 'images/'
|
|
|
|
- '*.md'
|
2022-12-21 20:13:55 +01:00
|
|
|
|
2022-12-19 21:21:04 +01:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
|
|
|
# Use docker.io for Docker Hub if empty
|
|
|
|
REGISTRY: ghcr.io
|
|
|
|
# github.repository as <account>/<repo>
|
|
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-push-image:
|
|
|
|
runs-on: ubuntu-latest
|
2022-12-22 00:20:16 +01:00
|
|
|
permissions:
|
|
|
|
packages: write
|
|
|
|
contents: read
|
2022-12-19 21:21:04 +01:00
|
|
|
steps:
|
2022-12-22 00:20:16 +01:00
|
|
|
- name: Setup
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarn-cache-dir-path
|
|
|
|
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
id: yarn-cache
|
2022-12-19 21:21:04 +01:00
|
|
|
with:
|
2022-12-22 00:20:16 +01:00
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
|
|
|
- run: yarn install --immutable
|
2023-02-19 21:04:10 +01:00
|
|
|
- run: yarn build
|
2022-12-22 00:20:16 +01:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v4
|
|
|
|
with:
|
|
|
|
# list of Docker images to use as base name for tags
|
|
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
|
|
# generate Docker tags based on the following events/attributes
|
|
|
|
tags: |
|
|
|
|
type=raw,value=latest
|
|
|
|
type=pep440,pattern={{version}}
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to GHCR
|
|
|
|
uses: docker/login-action@v2
|
2022-12-19 21:21:04 +01:00
|
|
|
with:
|
2022-12-21 20:13:55 +01:00
|
|
|
registry: ghcr.io
|
2022-12-19 21:21:04 +01:00
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
2022-12-22 00:20:16 +01:00
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
|
|
|
context: .
|
|
|
|
push: true
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
|
cache-from: type=gha
|
|
|
|
cache-to: type=gha,mode=max
|