Skip to content

Commit 9879b31

Browse files
committed
Merge branch 'deployment-environments'
2 parents f653067 + b552499 commit 9879b31

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: "Deploy"
22
on:
33
push:
44
branches:
5-
- bitte
5+
- marlowe-dist-demo # production, TODO this should be from the marlowe-production branch
6+
- master # staging
7+
# TODO need branches for wyohack and plutus-production
68
jobs:
79
deploy:
810
runs-on: ubuntu-latest

scripts/deploy-bitte

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ fi
2424

2525
declare -A ref_env_mapping=(
2626
# TODO Make this the production branch
27-
[bitte]=production
27+
[marlowe-dist-demo]=production
28+
[master]=staging
29+
# TODO need branches for wyohack and plutus-production
2830
)
2931

3032
if [ ! -v 'ref_env_mapping[${plutus_ref}]' ]
@@ -59,7 +61,7 @@ declare -r tmp
5961
cat > "${tmp}/${plutus_env}.cue" <<EOF
6062
package revisions
6163
62-
${plutus_env}: "${plutus_rev}"
64+
"${plutus_env}": "${plutus_rev}"
6365
EOF
6466

6567

0 commit comments

Comments
 (0)