File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 49
49
# Use the provided GITREF or default to the branch triggering the workflow.
50
50
GITREF : ${{ github.event.inputs.gitref || github.ref }}
51
51
FORCE : " ${{ github.event_name == 'push' || github.event.inputs.force == null && 'false' || github.event.inputs.force }}"
52
- DRY_RUN : " ${{ github.event.inputs.dry-run == null && 'true' || github.event.inputs.dry-run }}"
52
+ DRY_RUN : " ${{ github.event_name == 'push' && 'false' || github. event.inputs.dry-run == null && 'true' || github.event.inputs.dry-run }}"
53
53
CDK_VERSION_FILE_PATH : " ./airbyte-cdk/java/airbyte-cdk/core/src/main/resources/version.properties"
54
54
S3_BUILD_CACHE_ACCESS_KEY_ID : ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }}
55
55
S3_BUILD_CACHE_SECRET_KEY : ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }}
77
77
id : read-target-java-cdk-version
78
78
run : |
79
79
cdk_version=$(cat $CDK_VERSION_FILE_PATH | tr -d '\n')
80
+ echo "CDK_VERSION=$CDK_VERSION"
81
+ echo "FORCE=$FORCE"
82
+ echo "DRY_RUN=$DRY_RUN"
80
83
if [[ -z "$cdk_version" ]]; then
81
84
echo "Failed to retrieve CDK version from $CDK_VERSION_FILE_PATH"
82
85
exit 1
You can’t perform that action at this time.
0 commit comments