Skip to content

Commit 53e4734

Browse files
chore: separate tools deployment from chart deployment
1 parent d1e6834 commit 53e4734

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/deploy-chart.yaml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@ env:
1414
TAG: sha-${{ github.sha }}
1515

1616
jobs:
17-
deploy-tools:
18-
uses: ./.github/workflows/deploy-tools.yaml
19-
secrets:
20-
OPENSHIFT_SERVER: ${{ secrets.OPENSHIFT_SERVER }}
21-
OPENSHIFT_TOKEN: ${{ secrets.OPENSHIFT_TOKEN }}
22-
NAMESPACE_PREFIX: ${{ secrets.NAMESPACE_PREFIX }}
23-
2417
deploy-to-openshift-development:
2518
runs-on: ubuntu-latest
2619
environment:

.github/workflows/main.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,14 @@ jobs:
1313
uses: ./.github/workflows/test.yaml
1414
secrets: inherit
1515

16-
deploy:
16+
deploy-tools:
17+
uses: ./.github/workflows/deploy-tools.yaml
18+
secrets:
19+
OPENSHIFT_SERVER: ${{ secrets.OPENSHIFT_SERVER }}
20+
OPENSHIFT_TOKEN: ${{ secrets.OPENSHIFT_TOKEN }}
21+
NAMESPACE_PREFIX: ${{ secrets.NAMESPACE_PREFIX }}
22+
23+
deploy-chart:
1724
needs: [test]
1825
uses: ./.github/workflows/deploy-chart.yaml
1926
secrets:

0 commit comments

Comments
 (0)