Skip to content

Deploy to Production #13

Deploy to Production

Deploy to Production #13

Workflow file for this run

name: Deploy to Production
concurrency: production
on:
workflow_dispatch:
jobs:
branch-check:
name: Environment Check
runs-on: ubuntu-latest
environment: production
steps:
- name: Pass
run: echo "Passed check"
build-push:
name: Build and Push Images and Charts
needs: [branch-check]
uses: ./.github/workflows/cd.yaml
with:
image_tag: prod
chart_ver: "1.0.0"
secrets: inherit
deploy:
name: SSH and Deploy
needs: [build-push]
uses: ./.github/workflows/deploy.yaml
with:
environment: production
name: bt-prod-app
version: "1.0.0"
values: |
host: stanfurdtime.com
secrets: inherit