Skip to content

Deploy Manual Native #29

Deploy Manual Native

Deploy Manual Native #29

name: Deploy Manual Native
on:
workflow_dispatch:
inputs:
ocir_repository:
description: 'OCIR 리포지토리 (예: snutt-dev/snutt-timetable)'
required: true
type: string
dockerfile:
description: 'Dockerfile 경로 (예: api/Dockerfile-native)'
required: true
type: string
jobs:
deploy:
uses: ./.github/workflows/_deploy-native.yml
with:
ocir_repository: ${{ inputs.ocir_repository }}
dockerfile: ${{ inputs.dockerfile }}
secrets:
OCI_AUTH_TOKEN: ${{ secrets.OCI_AUTH_TOKEN }}
DEPLOYER_APP_ID: ${{ secrets.DEPLOYER_APP_ID }}
DEPLOYER_APP_PRIVATE_KEY: ${{ secrets.DEPLOYER_APP_PRIVATE_KEY }}