Skip to content

Commit

Permalink
fix: deployment without sqitch tag
Browse files Browse the repository at this point in the history
  • Loading branch information
rafasdc committed Feb 12, 2025
1 parent 2bf58b1 commit 5e227e2
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,7 @@ jobs:
- run: ./.bin/sqitch-last-change-is-tag.sh db

deploy-to-openshift-test:
needs:
[
deploy-to-openshift-development,
ensure-sqitch-plan-ends-with-tag,
is-tagged-release,
]
needs: [deploy-to-openshift-development, is-tagged-release]
if: contains(needs.is-tagged-release.outputs.tagVersion, 'v')
runs-on: ubuntu-latest
environment:
Expand Down Expand Up @@ -194,12 +189,7 @@ jobs:
environment: test

deploy-to-openshift-production:
needs:
[
deploy-to-openshift-test,
ensure-sqitch-plan-ends-with-tag,
is-tagged-release,
]
needs: [deploy-to-openshift-test, is-tagged-release]
if: contains(needs.is-tagged-release.outputs.tagVersion, 'v')
runs-on: ubuntu-latest
environment:
Expand Down

0 comments on commit 5e227e2

Please sign in to comment.