Skip to content

Commit

Permalink
staging tag deploy echo value test
Browse files Browse the repository at this point in the history
  • Loading branch information
ldraney committed May 22, 2024
1 parent 822757a commit de3010f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/cd-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,20 +102,6 @@ jobs:
uses: ./.github/workflows/create-and-post-tag.yml
secrets: inherit

create-release-notes:
needs: create-and-post-tag
uses: ./.github/workflows/create-release-notes.yml
secrets: inherit
with:
previousVersion: ${{ needs.create-and-post-tag.outputs.previousVersion }}

publish-release-notes:
needs: create-release-notes
uses: ./.github/workflows/publish-release-notes.yml
secrets: inherit
with:
draftReleaseReference: ${{ needs.create-release-notes.outputs.draftReleaseReference }}

deploy-to-staging-test:
needs: create-and-post-tag
runs-on: ubuntu-latest
Expand All @@ -132,6 +118,20 @@ jobs:
# with:
# newVersion: ${{ }}

create-release-notes:
needs: create-and-post-tag
uses: ./.github/workflows/create-release-notes.yml
secrets: inherit
with:
previousVersion: ${{ needs.create-and-post-tag.outputs.previousVersion }}

publish-release-notes:
needs: create-release-notes
uses: ./.github/workflows/publish-release-notes.yml
secrets: inherit
with:
draftReleaseReference: ${{ needs.create-release-notes.outputs.draftReleaseReference }}

# QA-approval-of-staging:
# needs: deploy-to-staging
# environment:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/create-and-post-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
previousVersion: ${{ steps.create_tag.outputs.previousVersion }}
newVersion: ${{ steps.create_tag.outputs.newVersion }}
permissions:
contents: write
steps:
Expand Down

0 comments on commit de3010f

Please sign in to comment.