Skip to content

Commit 912e08f

Browse files
committed
chore: disable staging-ignition and staging-public automated deployments
1 parent 03a46fe commit 912e08f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/deploy-staging-networks.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ jobs:
7171
7272
deploy-staging-public:
7373
needs: determine-semver
74-
if: needs.determine-semver.outputs.should_deploy == 'true' && needs.determine-semver.outputs.major_version == '2'
74+
# temporarily disabled
75+
if: false # needs.determine-semver.outputs.should_deploy == 'true' && needs.determine-semver.outputs.major_version == '2' && needs.determine-semver.outputs.minor_version == '1'
7576
uses: ./.github/workflows/deploy-staging-network.yml
7677
with:
7778
network: staging-public
@@ -82,7 +83,8 @@ jobs:
8283
deploy-staging-ignition:
8384
# Depends on staging-public until we are confident in concurrent deployments
8485
needs: [determine-semver, deploy-staging-public]
85-
if: needs.determine-semver.outputs.should_deploy == 'true' && needs.determine-semver.outputs.major_version == '2'
86+
# temporarily disabled
87+
if: false # needs.determine-semver.outputs.should_deploy == 'true' && needs.determine-semver.outputs.major_version == '2' && needs.determine-semver.outputs.minor_version == '1'
8688
uses: ./.github/workflows/deploy-staging-network.yml
8789
with:
8890
network: staging-ignition

0 commit comments

Comments
 (0)