Skip to content

Commit

Permalink
ci: add gh action for release tagging and versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
gitcommitshow authored Apr 12, 2024
1 parent 44d5afc commit 5b9d4bc
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
workflow_dispatch:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

name: Prepare release

jobs:
release-please:
strategy:
matrix:
os: [ubuntu-22.04]

runs-on: ${{ matrix.os }}
steps:
- uses: google-github-actions/release-please-action@v4
with:
token: ${{secrets.RELEASE_PLEASE_PAT}}
# this is a built-in strategy in release-please, see "Action Inputs"
# for more options
release-type: node

0 comments on commit 5b9d4bc

Please sign in to comment.