Skip to content

Commit

Permalink
Add workflow to build image
Browse files Browse the repository at this point in the history
  • Loading branch information
spilin committed Dec 6, 2024
1 parent d365f58 commit 8521b8c
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
name: Docker Image

on:
workflow_dispatch:
inputs:
tag:
description: 'Tag'
required: true
release:
types: [created]

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
VERSION: ${{ github.event.inputs.tag || github.event.release.tag_name || '' }}

jobs:
build-and-push:
runs-on: k8s-infrastructure-dind

permissions:
contents: read
packages: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }} # Use a PAT with access to private repos

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Check if VERSION follows the x.x.x format
run: |
if [[ "${{ env.VERSION }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
echo "LATEST_TAG_ENABLED=true" >> $GITHUB_ENV
else
echo "LATEST_TAG_ENABLED=false" >> $GITHUB_ENV
fi
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha
type=semver,pattern={{version}},value=${{ env.VERSION }}
type=raw,value=latest,enable=${{ env.LATEST_TAG_ENABLED == 'true' }}
type=raw,value=testnet
flavor: |
latest=false
- name: Build and push Docker image
id: push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
VERSION=${{ env.VERSION }}
secrets: |
GIT_AUTH_TOKEN=${{ secrets.GH_PAT }}

0 comments on commit 8521b8c

Please sign in to comment.