Skip to content

Commit b97a24f

Browse files
committed
Create publish workflow
1 parent 978a2c8 commit b97a24f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/publish.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Bump version and create release
2+
on:
3+
workflow_dispatch:
4+
env:
5+
PACKAGE_NAME: LiveKit
6+
jobs:
7+
bump:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: write
11+
steps:
12+
- uses: actions/checkout@v3
13+
with:
14+
ssh-key: ${{ secrets.NANPA_KEY }}
15+
- uses: nbsp/ilo@v1
16+
with:
17+
packages: ${{ env.PACKAGE_NAME }}
18+
# TODO: create-release:

0 commit comments

Comments
 (0)