mirror of https://github.com/buster-so/buster.git
fix: release please update
This commit is contained in:
parent
619c87cdeb
commit
e8ee2ccac1
|
@ -1,22 +1,24 @@
|
||||||
name: Release
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
|
name: release-please
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release-please:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- uses: googleapis/release-please-action@v4
|
||||||
uses: actions/checkout@v3
|
|
||||||
|
|
||||||
- name: Run Release Please
|
|
||||||
uses: googleapis/release-please-action@v4
|
|
||||||
with:
|
with:
|
||||||
release-type: simple
|
# this assumes that you have created a personal access token
|
||||||
|
# (PAT) and configured it as a GitHub action secret named
|
||||||
|
# `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important).
|
||||||
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
|
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
|
||||||
skip-github-release: true
|
# this is a built-in strategy in release-please, see "Action Inputs"
|
||||||
path: .
|
# for more options
|
||||||
|
release-type: simple
|
Loading…
Reference in New Issue