Deploy (main -> staging) by @orangewolf #265
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: 'staging' | |
type: choice | |
options: | |
- staging | |
- 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 | |
# We are using version 14 since this project has not been knap-sackerized yet | |
jobs: | |
deploy: | |
uses: scientist-softserv/actions/.github/workflows/[email protected] | |
secrets: inherit |