Skip to content

Chronicle Docker Image Build #4

Chronicle Docker Image Build

Chronicle Docker Image Build #4

Workflow file for this run

name: Chronicle Docker Image Build
on:
workflow_dispatch:
inputs:
version:
description: 'Version (tag to build, e.g. v2.2)'
required: true
default: 'v2.2'
repo:
description: 'Git repository to pull from'
required: true
default: 'https://github.com/EOSChronicleProject/eos-chronicle.git'
env:
REGISTRY: ghcr.io
IMAGE_NAME: greymass/chronicle
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: ${{ github.event.inputs.version }}
- name: Log in to the Container registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: ./chronicle/
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
CHRONICLE_VERSION=${{ github.event.inputs.version }}
CHRONICLE_REPOSITORY=${{ github.event.inputs.repo }}