1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-11 11:31:36 +02:00

feat(release-please): add support for ocaml (#189)

Refs: https://github.com/googleapis/release-please/pull/697
This commit is contained in:
Benjamin E. Coe
2021-01-11 20:33:54 -08:00
committed by GitHub
parent 1319f9e357
commit c1aca05241
3 changed files with 6 additions and 4 deletions

View File

@@ -70,6 +70,8 @@ Release Please automates releases for the following flavors of repositories:
| `python` | [A Python repository, with a setup.py, setup.cfg, version.py and CHANGELOG.md](https://github.com/googleapis/python-storage) |
| `ruby` | [A Ruby repository, with version.rb and CHANGELOG.md](https://github.com/google/google-id-token) |
| `terraform-module` | [A terraform module, with a version in the README.md, and a CHANGELOG.md](https://github.com/terraform-google-modules/terraform-google-project-factory) |
| rust | A Rust repository, with a Cargo.toml (either as a crate or workspace) and a CHANGELOG.md |
| ocaml | [An OCaml repository, containing 1 or more opam or esy files and a CHANGELOG.md](https://github.com/grain-lang/binaryen.ml) |
| `simple` | [A repository with a version.txt and a CHANGELOG.md](https://github.com/googleapis/gapic-generator) |
## How release please works

6
package-lock.json generated
View File

@@ -3046,9 +3046,9 @@
"dev": true
},
"release-please": {
"version": "9.1.0",
"resolved": "https://registry.npmjs.org/release-please/-/release-please-9.1.0.tgz",
"integrity": "sha512-qUAE6WO2rBbMobUQRx3DbTqfL/6BiiTrNyZEEgwGyIKrwGAnK1Iu8XRuixh4MT8MfPHQwUKAqn27JEOL+wSXsQ==",
"version": "9.2.0",
"resolved": "https://registry.npmjs.org/release-please/-/release-please-9.2.0.tgz",
"integrity": "sha512-FoTTOODxbnptIfXdw2YsEsprBmsKohW1hzHBOx00zzoRyXg/utcJEtWesH1C4cs4Bc4jv0y0nX3O2QTEJQce1w==",
"requires": {
"@conventional-commits/parser": "^0.4.1",
"@iarna/toml": "^2.2.5",

View File

@@ -26,7 +26,7 @@
"homepage": "https://github.com/bcoe/release-please-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"release-please": "^9.1.0"
"release-please": "^9.2.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",