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

feat: adds elixir support (#354)

Co-authored-by: Benjamin E. Coe <bencoe@google.com>
This commit is contained in:
Philipp Piwo
2021-09-09 23:56:33 +02:00
committed by GitHub
parent 5c245ae70b
commit 59f4915177
3 changed files with 5 additions and 4 deletions

View File

@@ -87,6 +87,7 @@ Release Please automates releases for the following flavors of repositories:
| ocaml | [An OCaml repository, containing 1 or more opam or esy files and a CHANGELOG.md](https://github.com/grain-lang/binaryen.ml) | | 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) | | `simple` | [A repository with a version.txt and a CHANGELOG.md](https://github.com/googleapis/gapic-generator) |
| helm | A helm chart repository with a Chart.yaml and a CHANGELOG.md | | helm | A helm chart repository with a Chart.yaml and a CHANGELOG.md |
| elixir | An elixir repository with a mix.exs and a CHANGELOG.md |
## How release please works ## How release please works

6
package-lock.json generated
View File

@@ -3218,9 +3218,9 @@
"dev": true "dev": true
}, },
"release-please": { "release-please": {
"version": "11.22.0", "version": "11.23.0",
"resolved": "https://registry.npmjs.org/release-please/-/release-please-11.22.0.tgz", "resolved": "https://registry.npmjs.org/release-please/-/release-please-11.23.0.tgz",
"integrity": "sha512-3yK2vNyzUuviva/l6quBm9/5keCVcR34ljvDPbiVjokRwGCLgpHp9pfRD8z4v4ujuwt6MpueziqGJF6xzjWZlg==", "integrity": "sha512-LKP25W1wNjntvuJtaatxfvF34T7lNDbfu5p5tLtwqmhcj0qSNoL5gsmPCA+C8d7n2ETilPXjgbikIUg/gxDy5g==",
"requires": { "requires": {
"@conventional-commits/parser": "^0.4.1", "@conventional-commits/parser": "^0.4.1",
"@iarna/toml": "^2.2.5", "@iarna/toml": "^2.2.5",

View File

@@ -26,7 +26,7 @@
"homepage": "https://github.com/bcoe/release-please-action#readme", "homepage": "https://github.com/bcoe/release-please-action#readme",
"dependencies": { "dependencies": {
"@actions/core": "^1.2.6", "@actions/core": "^1.2.6",
"release-please": "^11.22.0" "release-please": "^11.23.0"
}, },
"devDependencies": { "devDependencies": {
"@vercel/ncc": "^0.27.0", "@vercel/ncc": "^0.27.0",