Added Docker release for CLI, updated documentation, added docker-specific features to CLI

This commit is contained in:
Marc Ole Bulling
2025-08-08 23:29:53 +02:00
parent 9a574dbed5
commit 25fb6351be
7 changed files with 202 additions and 8 deletions
@@ -0,0 +1,32 @@
name: Docker Publish CLI Custom Release Multiarch
on:
workflow_dispatch:
inputs:
tagname:
description: 'Tag name to be built'
required: true
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git checkout tags/${{ github.event.inputs.tagname }}
- name: install buildx
id: buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
version: latest
- name: login to docker hub
run: echo "${{ secrets.DOCKER_PW }}" | docker login -u "${{ secrets.DOCKER_USER }}" --password-stdin
- name: build and push the image
run: |
docker buildx build -f Dockerfile.cli-tool --push --tag f0rc3/gokapi-cli:${{ github.event.inputs.tagname }} --platform linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 .