Skip to content

Commit

Permalink
[FEAT] workflow_dispatch 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
airoca committed Jan 4, 2025
1 parent 8800edd commit 6ff1285
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
name: CICD
name: CI/CD

on:
push:
branches: [main]
workflow_dispatch:
inputs:
branch:
description: 'Branch to deploy'
required: true
default: 'main'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.branch }}

- name: Setup Java
uses: actions/setup-java@v3
Expand Down

0 comments on commit 6ff1285

Please sign in to comment.