Build docker image manually #81
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
on: | |
workflow_dispatch: | |
inputs: | |
commit: | |
description: 'the dashboard commit sha' | |
required: true | |
env-type: | |
type: choice | |
description: image env type | |
options: | |
- cloud | |
- staging | |
required: true | |
name: Build docker image manually | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
docker: | |
name: Build docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.inputs.commit }} | |
- name: Configure image tag | |
shell: bash | |
run: | | |
commitShortSHA=`echo ${{ github.sha }} | cut -c1-8` | |
IMAGE_TAG=$commitShortSHA | |
echo "IMAGE_TAG=${IMAGE_TAG}" >> $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log into registry ${{ env.REGISTRY }} | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Send GitHub Action trigger data to Slack workflow | |
id: slack_start | |
uses: slackapi/[email protected] | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
with: | |
payload: | | |
{"text": "Building new custom **dashboard** image for ${{ github.event.inputs.env-type }}. git-ref: `${{ github.event.inputs.commit }}`"} | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
file: ./docker/Dockerfile | |
build-args: command=${{ github.event.inputs.env-type }} | |
push: true | |
#platforms: linux/amd64,linux/arm64 | |
platforms: linux/amd64 | |
tags: | | |
${{ env.REGISTRY }}/greptimeteam/dashboard:${{ env.IMAGE_TAG }} | |
- name: Send GitHub Action trigger data to Slack workflow | |
id: slack_finish | |
uses: slackapi/[email protected] | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
with: | |
payload: | | |
{"text": "New custom **dashboard** image for ${{ github.event.inputs.env-type }} is ready. Tag: `${{ env.IMAGE_TAG }}`"} |