mirror of https://github.com/buster-so/buster.git
25 lines
474 B
YAML
25 lines
474 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run Release Please
|
|
uses: googleapis/release-please-action@v4
|
|
with:
|
|
release-type: simple
|
|
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
|
|
skip-github-release: true
|
|
path: .
|
|
version-file: version.txt
|
|
depth: 20
|