File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 51
51
CODER_BASE_IMAGE_TAG : ${{ steps.set_tags.outputs.CODER_BASE_IMAGE_TAG }}
52
52
CODER_IMAGE_TAG : ${{ steps.set_tags.outputs.CODER_IMAGE_TAG }}
53
53
NEW : ${{ steps.check_deployment.outputs.new }}
54
- BUILD : ${{ steps.filter.outputs.all_count > steps.filter.outputs.ignored_count || steps.check_deployment.outputs.new || github.event.inputs.build == 'true' }}
54
+ BUILD : ${{ steps.filter.outputs.all_count > steps.filter.outputs.ignored_count || steps.check_deployment.outputs.new }}
55
55
56
56
runs-on : " ubuntu-latest"
57
57
steps :
@@ -163,7 +163,7 @@ jobs:
163
163
build :
164
164
needs : get_info
165
165
# Run build job only if there are changes in the files that we care about or if the workflow is manually triggered with --force
166
- if : needs.get_info.outputs.BUILD == 'true'
166
+ if : needs.get_info.outputs.BUILD == 'true' || github.event.inputs.build == 'true'
167
167
runs-on : ${{ github.repository_owner == 'coder' && 'buildjet-8vcpu-ubuntu-2204' || 'ubuntu-latest' }}
168
168
env :
169
169
DOCKER_CLI_EXPERIMENTAL : " enabled"
You can’t perform that action at this time.
0 commit comments