Skip to content

Commit 712616d

Browse files
authored
Merge pull request #1344 from input-output-hk/chore/local-ci
chore: add local-network ci-pipeline
2 parents 28b117c + e165c9e commit 712616d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/std.yml

+8
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ on:
2828
type: boolean
2929
required: true
3030
default: false
31+
deploy-local-network:
32+
description: Deploy to local-network
33+
type: boolean
34+
required: true
35+
default: false
3136
workflow_call:
3237
inputs:
3338
deploy-dev-preprod:
@@ -118,6 +123,9 @@ jobs:
118123
if [ "true" == ${{ inputs.deploy-dev-mainnet || false }} ] ; then
119124
echo '{"environment":"dev-mainnet", "target":"dev-mainnet@us-east-1", "url": "https://dev-mainnet.lw.iog.io/"}'
120125
fi
126+
if [ "true" == ${{ inputs.deploy-local-network || false }} ] ; then
127+
echo '{"environment":"local-network", "target":"local-network@us-east-1@v1", "url": "https://local-network.lw.iog.io/"}'
128+
fi
121129
) | jq --slurp >deployment-matrix.json
122130
123131
cat deployment-matrix.json

0 commit comments

Comments
 (0)