Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/promote-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@ jobs:
if: ${{inputs.deployment-track == 'Alpha'}}
run: ./gradlew promoteArtifact --from-track internal --promote-track alpha

- name: App sweep security scan
if: ${{inputs.deployment-track == 'Alpha'}}
uses: ./.github/workflows/app-sweep.yml

- name: Promote to production 25%
if: ${{inputs.deployment-track == 'Prod-25-Percent-Rollout'}}
run: ./gradlew promoteArtifact --from-track alpha --promote-track production --release-status inProgress --user-fraction .25
Expand All @@ -74,4 +70,8 @@ jobs:
- name: Promote to production 100%
if: ${{inputs.deployment-track == 'Prod-100-Percent-Rollout'}}
run: ./gradlew promoteArtifact --update production --release-status completed

app-sweep-scan:
name: App Sweep Security Scan
if: ${{inputs.deployment-track == 'Alpha'}}
uses: ./.github/workflows/app-sweep.yml
secrets: inherit