Skip to content

Commit 65fc3ba

Browse files
Cody Mikolcodymikol
authored andcommitted
feat: add release please workflow
this will allow us to automatically tag / version the project and create release artifacts. We can use this with luarocks. Fixes N/A
1 parent 9170634 commit 65fc3ba

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release Please
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: write
11+
pull-requests: write
12+
13+
jobs:
14+
release:
15+
name: release
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: googleapis/release-please-action@v4
19+
with:
20+
token: ${{ secrets.PAT }}
21+
release-type: simple

0 commit comments

Comments
 (0)