Skip to content

Commit

Permalink
Restore missing has-matching-release-tag step (#930)
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Baldry <[email protected]>
  • Loading branch information
jdbaldry authored Dec 20, 2024
1 parent b38caab commit ecb63f2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions publish-technical-documentation-release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,15 @@ runs:
run: npm install --production --prefix ./actions
shell: bash

- name: Determine if there is a matching release tag
id: has-matching-release-tag
uses: ./actions/has-matching-release-tag
with:
ref_name: ${{ github.ref_name }}
release_branch_regexp: ${{ inputs.release_branch_regexp }}
release_branch_with_patch_regexp: ${{ inputs.release_branch_with_patch_regexp }}
release_tag_regexp: ${{ inputs.release_tag_regexp }}

- name: Determine technical documentation version
if: steps.has-matching-release-tag.outputs.bool == 'true'
uses: ./actions/docs-target
Expand Down

0 comments on commit ecb63f2

Please sign in to comment.