Skip to content

Deploy in production #20

Deploy in production

Deploy in production #20

Workflow file for this run

name: Deploy in production
on:
push:
branches:
- prod
workflow_dispatch:
jobs:
build_server:
uses: ./.github/workflows/build_server_image.yml
secrets: inherit
build_webapp:
needs: build_server
uses: ./.github/workflows/build_web_image.yml
secrets: inherit
deploy_release:
needs: build_webapp
uses: ./.github/workflows/create_release.yml
secrets: inherit
update_sera_app:
needs: deploy_release
uses: ./.github/workflows/install_sera.yml
secrets: inherit
notify:
needs: deploy_release
runs-on: ubuntu-latest
steps:
- name: Notify production build & published
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
uses: Ilshidur/action-discord@master
with:
args: "A new release just been created on SERA, images pushed to dockerhub."