mirror of
https://github.com/Noooste/garage-ui.git
synced 2026-07-26 07:48:13 +00:00
709b9f2ad3
Signed-off-by: Noste <83548733+Noooste@users.noreply.github.com>
27 lines
604 B
YAML
27 lines
604 B
YAML
name: release-please
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
release-please:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/create-github-app-token@v2
|
|
id: app-token
|
|
with:
|
|
app-id: ${{ secrets.RELEASE_PLEASE_APP_ID }}
|
|
private-key: ${{ secrets.RELEASE_PLEASE_APP_KEY }}
|
|
|
|
- uses: googleapis/release-please-action@v4
|
|
with:
|
|
config-file: release-please-config.json
|
|
manifest-file: .release-please-manifest.json
|
|
token: ${{ steps.app-token.outputs.token }}
|