Skip to content

Commit ee9b8da

Browse files
committed
feat: add release pipeline workflow for semantic versioning
1 parent 80e664f commit ee9b8da

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release Pipeline
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
packages: write
11+
attestations: write
12+
13+
jobs:
14+
release-please:
15+
name: Prepare Release (Semantic Versioning)
16+
runs-on: ubuntu-latest
17+
permissions:
18+
contents: write
19+
pull-requests: write
20+
outputs:
21+
release_created: ${{ steps.release.outputs.release_created }}
22+
tag_name: ${{ steps.release.outputs.tag_name }}
23+
steps:
24+
- uses: googleapis/release-please-action@v4
25+
id: release
26+
with:
27+
token: ${{ secrets.GITHUB_TOKEN }}
28+
release-type: node

0 commit comments

Comments
 (0)