mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
28 lines
811 B
YAML
28 lines
811 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: GoogleCloudPlatform/release-please-action@v3
|
|
name: create release
|
|
with:
|
|
release-type: simple
|
|
bump-minor-pre-major: true # remove this to enable breaking changes causing 1.0.0 tag
|
|
changelog-types: |
|
|
[
|
|
{ "type": "feat", "section": "Features", "hidden": false },
|
|
{ "type": "fix", "section": "Patches", "hidden": false },
|
|
{ "type": "docs", "section": "Documentation", "hidden": false }
|
|
]
|
|
extra-files: |
|
|
SECURITY.md
|
|
docs/guide/getting-started.md
|
|
docs/pt-br/guide/getting-started.md
|
|
docs/zh-hans/guide/getting-started.md
|