Skip to content

Commit

Permalink
Create manual-deploy.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmadigan authored May 14, 2024
1 parent 41a8280 commit 67c6389
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/manual-deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Manual Deployment
on:
workflow_dispatch:
inputs:
version:
description: 'The version to deploy'
required: true
default: '0.7.0'
sourceBranch:
description: 'Source Branch'
required: true
default: '0.7.x'

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Echo Inputs
run: |
echo "Version: ${{ github.event.inputs.version }}"
echo "sourceBranch: ${{ github.event.inputs.sourceBranch }}"

0 comments on commit 67c6389

Please sign in to comment.