Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
4805d9a559 Update actions workflows to deploy hotfix and release branches
All checks were successful
Test / build (push) Successful in 2m26s
2025-07-07 10:04:00 +01:00
2 changed files with 6 additions and 4 deletions

View file

@ -2,8 +2,8 @@ name: Deploy To Production
on:
push:
branches:
- main
tags:
- '*'
jobs:
build:
@ -43,7 +43,7 @@ jobs:
DB_DATA_LOCATION: ${{ secrets.PROD_DB_DATA_LOCATION }}
SERVER_PATH: ${{ secrets.PROD_SSH_SERVER_PATH }}
BOT_TOKEN: ${{ secrets.PROD_BOT_TOKEN }}
BOT_VER: ${{ vars.PROD_BOT_VER }}
BOT_VER: ${{ github.REF_NAME }}
BOT_AUTHOR: ${{ vars.PROD_BOT_AUTHOR }}
BOT_OWNERID: ${{ vars.PROD_BOT_OWNERID }}
BOT_CLIENTID: ${{ vars.PROD_BOT_CLIENTID }}

View file

@ -4,6 +4,8 @@ on:
push:
branches:
- develop
- hotfix/*
- release/*
jobs:
build:
@ -43,7 +45,7 @@ jobs:
DB_DATA_LOCATION: ${{ secrets.STAGE_DB_DATA_LOCATION }}
SERVER_PATH: ${{ secrets.STAGE_SSH_SERVER_PATH }}
BOT_TOKEN: ${{ secrets.STAGE_BOT_TOKEN }}
BOT_VER: ${{ vars.STAGE_BOT_VER }}
BOT_VER: ${{ github.REF_NAME }}
BOT_AUTHOR: ${{ vars.STAGE_BOT_AUTHOR }}
BOT_OWNERID: ${{ vars.STAGE_BOT_OWNERID }}
BOT_CLIENTID: ${{ vars.STAGE_BOT_CLIENTID }}