Skip to content

Commit 403b492

Browse files
committed
✨ feat: GitHub Action 자동 Release 추가
1 parent 8cdf765 commit 403b492

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: release
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
types:
8+
- labeled
9+
10+
jobs:
11+
release:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: haya14busa/action-bumpr@v1

0 commit comments

Comments
 (0)