increase relay RAM to 2.5G, use min healthy time for staggering updates #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: STAGE - Build and Deploy | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Build and push | |
uses: ./.github/actions/build-and-push | |
with: | |
docker-username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
docker-password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
docker-tag: latest-stage | |
- name: Deploy | |
uses: ./.github/actions/deploy | |
with: | |
environment: stage | |
nomad-cacert: operations/admin-ui-ca.crt | |
nomad-token: ${{ secrets.NOMAD_TOKEN_SBWS_DEPLOY }} | |
nomad-addr: ${{ secrets.NOMAD_DEPLOY_ADDR }} |