Dummy deployment #163
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: "Dummy deployment" | |
on: | |
workflow_dispatch: | |
inputs: | |
env: | |
description: 'The env the dummy deploy points to' | |
type: choice | |
options: | |
- development | |
- staging | |
- production | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: ${{ inputs.env }} | |
steps: | |
- name: 'Deploy' | |
id: deploy-dummy | |
run: | | |
echo "Deploy to $TARGET_ENV success" | |
env: | |
TARGET_ENV: ${{ inputs.env }} | |