Skip to content

Commit

Permalink
feat(workflow): disable check providers (#3146)
Browse files Browse the repository at this point in the history
  • Loading branch information
larisa17 authored Dec 17, 2024
1 parent a45825f commit 81eecdc
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions .github/workflows/release_and_deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
create-draft-release:
name: Create Draft Release
runs-on: ubuntu-latest
needs: [ref, run-tests, check-provider-bitmap]
needs: [ref, run-tests] #, check-provider-bitmap]
permissions: write-all
steps:
- name: Release
Expand All @@ -114,7 +114,7 @@ jobs:

deploy-api-staging:
name: Deploy API to Staging
needs: [ref, run-tests, check-provider-bitmap, create-draft-release]
needs: [ref, run-tests, create-draft-release] #, check-provider-bitmap]
uses: ./.github/workflows/build_and_deploy_generic.yml
with:
refspec: ${{ needs.ref.outputs.refspec }}
Expand All @@ -125,11 +125,10 @@ jobs:
deploy-ui-staging:
name: Deploy UI to Staging - Push to branch
runs-on: ubuntu-latest
needs:
[
needs: [
ref,
run-tests,
check-provider-bitmap,
# check-provider-bitmap,
create-draft-release,
deploy-api-staging,
]
Expand All @@ -150,11 +149,10 @@ jobs:

deploy-api-production:
name: Deploy API to Production
needs:
[
needs: [
ref,
run-tests,
check-provider-bitmap,
# check-provider-bitmap,
create-draft-release,
deploy-api-staging,
deploy-ui-staging,
Expand All @@ -169,11 +167,10 @@ jobs:
deploy-ui-production:
name: Deploy UI to Production - Push to branch
runs-on: ubuntu-latest
needs:
[
needs: [
ref,
run-tests,
check-provider-bitmap,
# check-provider-bitmap,
create-draft-release,
deploy-api-staging,
deploy-ui-staging,
Expand All @@ -196,11 +193,10 @@ jobs:

release:
name: Release
needs:
[
needs: [
ref,
run-tests,
check-provider-bitmap,
# check-provider-bitmap,
create-draft-release,
deploy-api-staging,
deploy-ui-staging,
Expand Down

0 comments on commit 81eecdc

Please sign in to comment.