Skip to content

Commit

Permalink
update tag after readme build to release pr ab#61860
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Henderson committed Aug 6, 2024
1 parent 0db085d commit 6d6ba99
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/starter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,19 @@ jobs:
secrets:
token: ${{ secrets.scan_token }}

update-tag:
needs: [call-assign-from-json-workflow, call-create-github-release-workflow,call-generate-readme-workflow]
if: github.event_name == 'pull_request' && (startsWith(github.base_ref, 'release-'))
runs-on: ubuntu-latest
name: Update the release tag
steps:
- name: Tag Repo
uses: richardsimko/update-tag@v1
with:
tag_name: ${{ needs.call-create-github-release-workflow.outputs.release_version }}
env:
GITHUB_TOKEN: ${{ secrets.token }}

call-post-release-workflow:
needs: [call-assign-from-json-workflow, call-create-github-release-workflow]
if: needs.call-create-github-release-workflow.outputs.IS_FULL_RELEASE == 'True'
Expand Down

0 comments on commit 6d6ba99

Please sign in to comment.