Skip to content

Merge pull request #5 from nordeck/add-helmchart #28

Merge pull request #5 from nordeck/add-helmchart

Merge pull request #5 from nordeck/add-helmchart #28

Workflow file for this run

name: Docker Image CI
on:
push:
branches:
- "main"
paths:
- ".github/**"
- "Dockerfile"
- "**.ts"
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Custom metadata
run: |
echo "BUILD_DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
- name: Metadata
uses: docker/metadata-action@v4
id: meta
with:
images: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest
type=raw,value=v${{ env.BUILD_DATE }}
- name: Login
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}