Files
Open-Assistant/.github/workflows/production-deploy.yaml
T
2023-01-16 00:23:59 +01:00

17 lines
296 B
YAML

name: Deploy to prod
on:
push:
branches:
- production
jobs:
deploy-to-prod:
uses: ./.github/workflows/deploy-to-node.yaml
secrets: inherit
with:
stack-name: production
image-tag: ${{ vars.PROD_IMAGE_TAG }}
backend-port: 8280
website-port: 3200