Skip to content

Commit

Permalink
try and fix deploy action without being manually triggered
Browse files Browse the repository at this point in the history
  • Loading branch information
fredclausen committed Aug 13, 2023
1 parent a5aafb5 commit d96e8e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ jobs:
ghcr_repo: ${{ github.repository }}
get_version_method: file_in_container:file=/CONTAINER_VERSION
# set build_latest to true if github.event.inputs.use_test_image is false
build_latest: ${{ github.event.inputs.use_test_image == 'false' }}
build_baseimage_test: ${{ github.event.inputs.use_test_image == 'true' }}
build_latest: ${{ github.event.inputs.use_test_image == 'false' || 'true' }}
build_baseimage_test: ${{ github.event.inputs.use_test_image == 'true' || 'false' }}
# only build the entire stack if we are not using the test image
build_version_specific: ${{ github.event.inputs.use_test_image == 'false' }}
build_platform_specific: ${{ github.event.inputs.use_test_image == 'false' }}
build_version_specific: ${{ github.event.inputs.use_test_image == 'false' || 'true' }}
build_platform_specific: ${{ github.event.inputs.use_test_image == 'false' || 'true' }}
build_nohealthcheck: false
build_baseimage_url: :python/:python-test-pr
secrets:
Expand Down

0 comments on commit d96e8e2

Please sign in to comment.