Skip to content

v0.2.0 - Fixes high memory usage, adds version check #41

v0.2.0 - Fixes high memory usage, adds version check

v0.2.0 - Fixes high memory usage, adds version check #41

Workflow file for this run

name: Test Docker Image
on:
workflow_dispatch:
pull_request:
branches:
- main
paths:
- 'charts/**'
- 'app/**'
- 'Dockerfile'
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Build Docker image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
context: .
push: false
tags: ${{ github.repository }}:gh-run-${{ github.run_id }}