mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
c434703ee7
* ci: drive release-please from a manifest config on action v5 * ci: trim the release-please config comment
18 lines
522 B
YAML
18 lines
522 B
YAML
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
name: release-please
|
|
jobs:
|
|
release-please:
|
|
name: "Release please"
|
|
runs-on: ubicloud
|
|
steps:
|
|
# Config lives in release-please-config.json / .release-please-manifest.json:
|
|
# a `release-type` input instead re-derives the last released version by
|
|
# paginating every GitHub release, which on a repo this size is slow enough
|
|
# to fail intermittently.
|
|
- uses: googleapis/release-please-action@v5
|
|
with:
|
|
token: ${{ secrets.PAT_TOKEN }}
|