name: Manual Deploy on: workflow_dispatch: inputs: environment: description: 'Target environment' required: true default: 'staging' type: string jobs: deploy: runs-on: ubuntu-latest environment: ${{ github.event.inputs.environment }} steps: - uses: actions/checkout@v4 - run: echo 'Deploying to ${{ github.event.inputs.environment }}'