-
Notifications
You must be signed in to change notification settings - Fork 3
35 lines (30 loc) · 942 Bytes
/
release.yml
File metadata and controls
35 lines (30 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Release
on:
push:
branches:
- master
- releases/**
workflow_dispatch:
permissions:
contents: write
pull-requests: write
concurrency:
group: "release-${{ github.ref_name }}"
jobs:
release-please:
runs-on: ubuntu-24.04
name: Release Automation
steps:
- uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3
id: generate-token
with:
app-id: ${{ secrets.LENDABOT_APP_ID }}
private-key: ${{ secrets.LENDABOT_APP_PRIVATE_KEY }}
- uses: googleapis/release-please-action@5c625bfb5d1ff62eadeeb3772007f7f66fdcf071 # v4
id: release
with:
token: ${{ steps.generate-token.outputs.token }}
config-file: .github/release-please-config.json
manifest-file: .github/.release-please-manifest.json
include-component-in-tag: false
target-branch: ${{ github.ref_name }}