We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 222103c commit ba82913Copy full SHA for ba82913
1 file changed
.github/workflows/prod.yaml
@@ -2,6 +2,9 @@
2
name: Prod
3
4
on:
5
+ push:
6
+ branches:
7
+ - ch-update-prod-deployment
8
release:
9
types:
10
- released
@@ -67,7 +70,7 @@ jobs:
67
70
core.error('Unable to find sha tag of image')
68
71
} else {
69
72
const tag = fullUrl.split(':')[1]
- core.setOutput('image', fullUrl)
73
+ core.setOutput('image', `${{env.image}}`)
74
core.setOutput('tag', tag)
75
}
76
@@ -114,6 +117,7 @@ jobs:
114
117
activity-logger cranecloud/cranecloud \
115
118
--values helm/values.prod.yaml \
116
119
--namespace $namespace \
120
+ --set image.repository="${{ needs.build.outputs.image }}" \
121
--set image.tag="${{ needs.build.outputs.tag }}" \
122
--set environment.JWT_SALT="${{ secrets.PRODUCTION_JWT_SALT }}" \
123
--timeout=300s
0 commit comments