Skip to content

Commit 964f6f3

Browse files
chore: replace release-please app with GitHub action
Replaces the .github/release-please.yml app configuration with a release-please-action workflow. The new workflow in .github/workflows/release-please.yml is equivalent to the old app configuration. It uses a manifest-based release strategy, which is the default for the action when no `release-type` is specified. Removes comments from the workflow file.
1 parent 8808a25 commit 964f6f3

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.github/release-please.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/workflows/release-please.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
name: release-please
11+
12+
jobs:
13+
release-please:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: googleapis/release-please-action@v4
17+
with:
18+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)