Set rollout by path #8944
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Set rollout by path | |
on: [deployment_status] | |
jobs: | |
set-rollout: | |
if: ${{ github.event.deployment.task == 'upload-to-cdn' && github.event.deployment_status.state == 'success' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: hmarr/debug-action@v2 | |
# Dev | |
- name: Set Rollout - Development | |
uses: decentraland/set-rollout-action@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Repo deployment info | |
ref: ${{ github.event.deployment.ref }} | |
sha: ${{ github.event.deployment.sha }} | |
# CDN information | |
packageName: ${{ github.event.deployment.payload.packageName }} | |
packageVersion: ${{ github.event.deployment.payload.packageVersion }} | |
# Rollout information | |
deploymentPath: 'builder' | |
deploymentEnvironment: 'zone' | |
deploymentName: '_site' | |
percentage: 100 | |
# Stg | |
- name: Set Rollout - Staging | |
uses: decentraland/set-rollout-action@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Repo deployment info | |
ref: ${{ github.event.deployment.ref }} | |
sha: ${{ github.event.deployment.sha }} | |
# CDN information | |
packageName: ${{ github.event.deployment.payload.packageName }} | |
packageVersion: ${{ github.event.deployment.payload.packageVersion }} | |
# Rollout information | |
deploymentPath: 'builder' | |
deploymentEnvironment: 'today' | |
deploymentName: '_site' | |
percentage: 100 |