added workflow for building specific version

This commit is contained in:
Hemna 2022-11-26 18:28:14 -05:00
parent d5e56b553e
commit d40927d1c3
1 changed files with 47 additions and 0 deletions

47
.github/workflows/release_build.yml vendored Normal file
View File

@ -0,0 +1,47 @@
name: Build specific version
on:
workflow_dispatch:
inputs:
aprsd_version:
required: true
options:
- 2.5.9
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@v6
- 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,linux/arm/v7
file: ./Dockerfile
build-args: |
APRSD_VERSION=${{ inputs.aprsd_version }}
push: true
tags: |
hemna6969/aprsd:v${{ inputs.aprsd_version }}