We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16eaa34 + 9be681d commit 0b56d0aCopy full SHA for 0b56d0a
.github/workflows/deploy.yml
@@ -0,0 +1,22 @@
1
+name: "Deploy"
2
+run-name: Deploy (${{ github.ref_name }} -> ${{ inputs.environment }}) by @${{ github.actor }}
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ environment:
7
+ description: 'Deploy to Environment'
8
+ required: true
9
+ default: 'staging'
10
+ type: choice
11
+ options:
12
+ - staging
13
+ debug_enabled:
14
+ type: boolean
15
+ description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)'
16
+ required: false
17
+ default: false
18
+
19
+jobs:
20
+ deploy:
21
+ uses: scientist-softserv/actions/.github/workflows/[email protected]
22
+ secrets: inherit
0 commit comments