1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-11-21 21:30:11 +00:00

correctly trigger based on no inptu

This commit is contained in:
Fred Clausen 2023-08-26 14:53:06 -06:00
parent cf0d91ba84
commit a0fd9a568d

View file

@ -75,7 +75,7 @@ jobs:
ghcr_repo: ${{ github.repository }} ghcr_repo: ${{ github.repository }}
get_version_method: file_in_container:file=/CONTAINER_VERSION get_version_method: file_in_container:file=/CONTAINER_VERSION
# set build_latest to true if github.event.inputs.use_test_image is false # set build_latest to true if github.event.inputs.use_test_image is false
build_latest: ${{ github.event.inputs.use_test_image == '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' }} build_baseimage_test: ${{ github.event.inputs.use_test_image == 'true' }}
# only build the entire stack if we are not using the test image # only build the entire stack if we are not using the test image
build_version_specific: false build_version_specific: false
@ -98,7 +98,7 @@ jobs:
ghcr_repo: ${{ github.repository }} ghcr_repo: ${{ github.repository }}
get_version_method: file_in_container:file=/CONTAINER_VERSION get_version_method: file_in_container:file=/CONTAINER_VERSION
# set build_latest to true if github.event.inputs.use_test_image is false # set build_latest to true if github.event.inputs.use_test_image is false
build_latest: ${{ github.event.inputs.use_test_image == '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' }} build_baseimage_test: ${{ github.event.inputs.use_test_image == 'true' }}
build_baseimage_url: docker-tar1090:latest/docker-tar1090:telegraf-baseimage-test build_baseimage_url: docker-tar1090:latest/docker-tar1090:telegraf-baseimage-test
# only build the entire stack if we are not using the test image # only build the entire stack if we are not using the test image