22 lines
513 B
YAML
22 lines
513 B
YAML
name: Release-Please
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- stable
|
|
|
|
jobs:
|
|
release-please:
|
|
# Do not run on forks.
|
|
if: github.repository == 'libretime/libretime'
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: google-github-actions/release-please-action@v4
|
|
with:
|
|
token: ${{ secrets.LIBRETIME_BOT_TOKEN }}
|
|
config-file: .github/release-please-config.json
|
|
manifest-file: .github/release-please-manifest.json
|
|
target-branch: ${{ github.ref_name }}
|