Build specific version #19
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
name: Build specific version | |
on: | |
workflow_dispatch: | |
inputs: | |
aprsd_version: | |
required: true | |
options: | |
- 3.0.0 | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
type: choice | |
options: | |
- info | |
- warning | |
- debug | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get Branch Name | |
id: branch-name | |
uses: tj-actions/branch-names@v8 | |
- name: Setup QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Setup Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker HUB | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build the Docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: "{{defaultContext}}:docker" | |
platforms: linux/amd64,linux/arm64 | |
file: ./Dockerfile | |
build-args: | | |
VERSION=${{ inputs.aprsd_version }} | |
BUILDX_QEMU_ENV=true | |
push: true | |
tags: | | |
hemna6969/aprsd:v${{ inputs.aprsd_version }} | |
hemna6969/aprsd:latest |