Skip to content

Merge branch 'refs/heads/staging' #168

Merge branch 'refs/heads/staging'

Merge branch 'refs/heads/staging' #168

Workflow file for this run

name: Production
on:
push:
branches: [ master ]
workflow_dispatch:
inputs:
envName:
description: 'Environment to deploy to'
required: true
type: string
default: production
envUrl:
description: 'URL of the environment'
required: true
type: string
default: 'https://kissj.net'
jobs:
test:
uses: ./.github/workflows/tests.yaml
build:
needs: test
uses: ./.github/workflows/build.yaml
with:
envName: production
secrets:
REGISTRY_USER: ${{ secrets.REGISTRY_USER }}
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_PASSWORD }}
production-deploy:
needs: build
uses: ./.github/workflows/deploy.yaml
with:
envName: 'production'
envUrl: 'https://kissj.net'
secrets: inherit