Skip to content

Andrevile runs workflow for production deploy #149

Andrevile runs workflow for production deploy

Andrevile runs workflow for production deploy #149

Workflow file for this run

name: Push & Deploy
on:
workflow_dispatch:
inputs:
user_name:
description: ๋ฐฐํฌํ•œ ์‚ฌ์šฉ์ž
required: true
type: string
stage_choice:
description: ๋ฐฐํฌ ์œ ํ˜• (production,devleop)
type: choice
options:
- production
- develop
run-name: '${{inputs.user_name}} runs workflow for ${{inputs.stage_choice}} deploy'
jobs:
deploy:
uses: './.github/workflows/deploy-integration.yml'
with:
user_name: ${{inputs.user_name}}
stage: ${{inputs.stage_choice}}
secrets:
ACCESS_TOKEN: ${{secrets.ACCESS_TOKEN}}