Skip to content

add ability to configure TX comments #2

add ability to configure TX comments

add ability to configure TX comments #2

Workflow file for this run

name: Deploy to GHCR
on:
# Build and deploy the image on pushes to main branch
workflow_dispatch:
inputs:
reason:
required: false
description: "Reason for running this workflow"
use_test_image:
required: false
type: boolean
description: "Use base image testpr"
default: false
# Build and deploy the image on pushes to master branch
push:
branches:
- main
paths:
- "Dockerfile**"
- "rootfs/**"
env:
REGISTRY: ghcr.io
IMAGE_NAME: docker-aprs-tracker
REPO: sdr-enthusiasts
IMAGE: docker-aprs-tracker
jobs:
workflow-dispatch:
name: Triggered via Workflow Dispatch?
# only run this step if workflow dispatch triggered
# log the reason the workflow dispatch was triggered
if: |
github.event_name == 'workflow_dispatch' &&
github.event.inputs.reason != ''
runs-on: ubuntu-latest
steps:
- name: Log dispatch reason
env:
INPUTS_REASON: ${{ github.event.inputs.reason }}
INPUTS_USE_TEST_IMAGE: ${{ github.event.inputs.use_test_image }}
run: |
echo "Workflow dispatch reason: $INPUTS_REASON"
echo "Use test image: $INPUTS_USE_TEST_IMAGE"
build_and_push:
name: Image Build & Push
uses: sdr-enthusiasts/common-github-workflows/.github/workflows/build_and_push_image.yml@main
with:
push_enabled: true
push_destinations: ghcr.io;
ghcr_repo_owner: ${{ github.repository_owner }}
ghcr_repo: sdr-enthusiasts/docker-aprs-tracker
platform_linux_arm32v6_enabled: false
platform_linux_i386_enabled: false
# set build_latest to true if github.event.inputs.use_test_image is false
build_latest: ${{ github.event.inputs.use_test_image == 'false' || github.event.inputs.use_test_image == '' }}
build_baseimage_test: ${{ github.event.inputs.use_test_image == 'true' || github.event.inputs.use_test_image == '' }}
# only build the entire stack if we are not using the test image
build_version_specific: false
build_platform_specific: false
build_nohealthcheck: false
build_baseimage_url: :base/:base-test-pr
secrets:
ghcr_token: ${{ secrets.GITHUB_TOKEN }}