Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Fail build if tag is not set #220

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/deploy-dataflow-flex-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ jobs:
id: build_flex_template
run: echo "BUILD_TAG=$(./build_flex_template.sh | tail -1)" >> $GITHUB_OUTPUT
shell: bash
- name: Check BUILD_TAG
# Fail the run if the BUILD_TAG is empty
if: ${{ steps.build_flex_template.outputs.BUILD_TAG == '' }}
run: exit 1
- name: Update Cloud Workflow build tag
# yamllint disable rule:line-length
run: sed -ri 's/^(\s*-\sflexTemplateBuildTag:)(\s".*"$)/\1 "${{ steps.build_flex_template.outputs.BUILD_TAG }}"/' data-pipeline.workflows.yaml
Expand Down