mirror of
https://github.com/material-components/material-web.git
synced 2026-01-09 07:21:09 +08:00
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.
This commit is contained in:
parent
8808a25da8
commit
964f6f33cc
2
.github/release-please.yml
vendored
2
.github/release-please.yml
vendored
@ -1,2 +0,0 @@
|
||||
handleGHRelease: true
|
||||
manifest: true
|
||||
18
.github/workflows/release-please.yml
vendored
Normal file
18
.github/workflows/release-please.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
|
||||
name: release-please
|
||||
|
||||
jobs:
|
||||
release-please:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: googleapis/release-please-action@v4
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
Loading…
x
Reference in New Issue
Block a user