uses: thecodingmachine/deeployer@master
env:
KUBE_CONFIG_FILE: ${{ secrets.KUBE_CONFIG_FILE }}
- AUTOCONNECT: 1
with:
- namespace: workadventure-master
+ namespace: workadventure-${GITHUB_REF##*/}
{
local env = std.extVar("env"),
# FIXME: namespace does not work if the branch contains a "/"
- local namespace = std.split(env.GITHUB_REF, "/")[2]
+ local namespace = std.split(env.GITHUB_REF, "/")[2],
"$schema": "https://raw.githubusercontent.com/thecodingmachine/deeployer/master/deeployer.schema.json",
"containers": {
"back": {
- "image": "thecodingmachine/workadventure-back:"+namespace,
+ "image": "thecodingmachine/workadventure-back:"+(if namespace == "master" then "latest" else namespace),
"host": "api."+namespace+".workadventure.test.thecodingmachine.com",
"ports": [8080],
"env": {
}
},
"front": {
- "image": "thecodingmachine/workadventure-front:"+namespace,
+ "image": "thecodingmachine/workadventure-front:"+(if namespace == "master" then "latest" else namespace),
"host": namespace+".workadventure.test.thecodingmachine.com",
"ports": [80],
"env": {