Skip to content

enable CAS locally

enable CAS locally #34

Workflow file for this run

name: "Deploy"
run-name: Deploy (${{ github.ref_name }} -> ${{ inputs.environment }}) by @${{ github.actor }}
on:
workflow_dispatch:
inputs:
environment:
description: 'Deploy to Environment'
required: true
default: 'production'
type: choice
options:
- production
debug_enabled:
type: boolean
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
required: false
default: false
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: "Load secrets into OAuth config"
run: envsubst < api/config/oauth.tmpl.yml > api/config/oauth.yml;
- name: "Do deploy"
uses: scientist-softserv/actions/.github/workflows/[email protected]
secrets: inherit