-
Notifications
You must be signed in to change notification settings - Fork 93
40 lines (35 loc) · 1.12 KB
/
set-rollout-manual.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Set delivery rollout - Manual
on:
workflow_dispatch:
inputs:
packageVersion:
description: 'NPM Version of the release (@dcl/explorer)'
required: true
default: ''
percentage:
description: 'Percentage of users getting this version'
required: true
default: '0'
deploymentDomain:
description: 'Deployment domain'
required: true
default: 'play.decentraland.zone'
jobs:
set-manual-rollout:
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2
- name: set-rollout
uses: decentraland/set-rollout-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Repo deployment info
ref: ${{ github.event.ref }}
sha: ${{ github.sha }}
# CDN information
packageName: "@dcl/explorer"
packageVersion: ${{ github.event.inputs.packageVersion }}
# Rollout information
deploymentDomain: ${{ github.event.inputs.deploymentDomain }}
deploymentName: "@dcl/explorer"
percentage: ${{ github.event.inputs.percentage }}