Skip to content

Commit

Permalink
Merge pull request #29 from cloudposse-examples/DEV-1567/fix-workflow…
Browse files Browse the repository at this point in the history
…-names

fix: Workflow Names
  • Loading branch information
milldr authored Feb 1, 2024
2 parents 58de547 + 067122d commit a0a6258
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/eks-argocd-hotfix-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ concurrency:

jobs:
ci:
uses: ./.github/workflows/workflows-ci-dockerized-app-build.yml
uses: ./.github/workflows/workflow-ci-dockerized-app-build.yml
with:
organization: ${{ inputs.organization }}
repository: ${{ inputs.repository }}
Expand All @@ -113,13 +113,13 @@ jobs:

release:
needs: [ci]
uses: ./.github/workflows/workflows-controller-hotfix-release.yml
uses: ./.github/workflows/workflow-controller-hotfix-release.yml
with:
ref: ${{ github.sha }}

promote:
needs: [release]
uses: ./.github/workflows/workflows-ci-dockerized-app-promote.yml
uses: ./.github/workflows/workflow-ci-dockerized-app-promote.yml
with:
organization: ${{ inputs.organization }}
repository: ${{ inputs.repository }}
Expand All @@ -132,7 +132,7 @@ jobs:

cd:
name: cd / production
uses: ./.github/workflows/workflows-cd-argocd.yml
uses: ./.github/workflows/workflow-cd-argocd.yml
needs: [ promote ]
with:
image: ${{ needs.promote.outputs.image }}
Expand All @@ -149,7 +149,7 @@ jobs:
github-private-actions-pat: ${{ secrets.github-private-actions-pat }}

reintegrate:
uses: ./.github/workflows/workflows-controller-hotfix-reintegrate.yml
uses: ./.github/workflows/workflow-controller-hotfix-reintegrate.yml
needs: [ cd ]
with:
ref: ${{ github.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/eks-argocd-main-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ concurrency:

jobs:
ci:
uses: ./.github/workflows/workflows-ci-dockerized-app-build.yml
uses: ./.github/workflows/workflow-ci-dockerized-app-build.yml
with:
organization: ${{ inputs.organization }}
repository: ${{ inputs.repository }}
Expand All @@ -107,7 +107,7 @@ jobs:
secret-outputs-passphrase: ${{ secrets.secret-outputs-passphrase }}

cd:
uses: ./.github/workflows/workflows-cd-argocd.yml
uses: ./.github/workflows/workflow-cd-argocd.yml
needs: [ ci ]
with:
image: ${{ needs.ci.outputs.image }}
Expand All @@ -124,7 +124,7 @@ jobs:
github-private-actions-pat: ${{ secrets.github-private-actions-pat }}

release:
uses: ./.github/workflows/workflows-controller-draft-release.yml
uses: ./.github/workflows/workflow-controller-draft-release.yml
needs: [ cd ]
secrets:
github-private-actions-pat: ${{ secrets.github-private-actions-pat }}
6 changes: 3 additions & 3 deletions .github/workflows/eks-argocd-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ concurrency:

jobs:
ci:
uses: ./.github/workflows/workflows-ci-dockerized-app-promote.yml
uses: ./.github/workflows/workflow-ci-dockerized-app-promote.yml
with:
organization: ${{ inputs.organization }}
repository: ${{ inputs.repository }}
Expand All @@ -113,7 +113,7 @@ jobs:

cd-staging:
name: cd / staging
uses: ./.github/workflows/workflows-cd-argocd.yml
uses: ./.github/workflows/workflow-cd-argocd.yml
needs: [ ci ]
with:
image: ${{ needs.ci.outputs.image }}
Expand All @@ -131,7 +131,7 @@ jobs:

cd-production:
name: cd / production
uses: ./.github/workflows/workflows-cd-argocd.yml
uses: ./.github/workflows/workflow-cd-argocd.yml
needs: [ ci, cd-staging ]
with:
image: ${{ needs.ci.outputs.image }}
Expand Down

0 comments on commit a0a6258

Please sign in to comment.