We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a46fee commit 79548a4Copy full SHA for 79548a4
1 file changed
.github/workflows/deploy-playground.yml
@@ -4,6 +4,17 @@ on:
4
push:
5
branches: [main]
6
workflow_dispatch:
7
+ inputs:
8
+ environment:
9
+ description: bulletin-deploy environment to publish to (blank = CLI default)
10
+ type: choice
11
+ default: ''
12
+ options:
13
+ - ''
14
+ - paseo-next-v2
15
+ - preview
16
+ - paseo-next
17
+ - paseo-review
18
19
concurrency:
20
group: deploy-truapi-playground
@@ -44,7 +55,9 @@ jobs:
44
55
45
56
- name: Deploy to DotNS
46
57
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3.0.2
58
+ env:
59
+ BULLETIN_ENV: ${{ inputs.environment }}
47
60
with:
48
61
timeout_minutes: 10
49
62
max_attempts: 3
50
- command: cd playground && bulletin-deploy ./out truapi-playground.dot --js-merkle
63
+ command: cd playground && bulletin-deploy ./out truapi-playground.dot --js-merkle ${BULLETIN_ENV:+--env "$BULLETIN_ENV"}
0 commit comments