mirror of
https://github.com/craigerl/aprsd.git
synced 2025-03-09 13:58:59 -04:00
added workflow for building specific version
This commit is contained in:
parent
d5e56b553e
commit
d40927d1c3
47
.github/workflows/release_build.yml
vendored
Normal file
47
.github/workflows/release_build.yml
vendored
Normal 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 }}
|
Loading…
Reference in New Issue
Block a user