Set rollout by path - Manual #241
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 - Manual | |
on: | |
workflow_dispatch: | |
inputs: | |
packageVersion: | |
description: "NPM Version of the release (@dcl/builder-site)" | |
required: true | |
default: "" | |
deploymentEnvironment: | |
type: "choice" | |
description: "Deployment environment" | |
required: true | |
default: "zone" | |
options: | |
- zone | |
- today | |
- org | |
rolloutPercentage: | |
description: "The percentage for this rollout" | |
required: true | |
default: "100" | |
jobs: | |
set-manual-by-path-rollout: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: hmarr/debug-action@v2 | |
- name: Set Rollout | |
uses: decentraland/set-rollout-action@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Repo deployment info | |
ref: ${{ github.event.ref }} | |
sha: ${{ github.sha }} | |
# CDN information | |
packageName: "@dcl/builder-site" | |
packageVersion: ${{ github.event.inputs.packageVersion }} | |
# Rollout information | |
deploymentPath: "builder" | |
deploymentEnvironment: ${{ github.event.inputs.deploymentEnvironment }} | |
deploymentName: "_site" | |
percentage: ${{ github.event.inputs.rolloutPercentage }} |