From 0d5176bea3771ae326b73c857750910087d7af5d Mon Sep 17 00:00:00 2001 From: Charles Treatman Date: Thu, 12 Oct 2023 11:07:21 -0500 Subject: [PATCH] chore(ci): add more paths to assets for semantic-release/git plugin (#160) I haven't had any luck figuring out how to get negative-matching globs to work for semantic-release/git. For now I'm punting and adding entries to the assets config to cover the files that were missed in the most recent release job run. --------- Co-authored-by: equinix-labs@auto-commit-workflow --- .releaserc.json | 9 ++++++++- equinix-openapi-metal/README.md | 6 +++--- equinix-openapi-metal/build.gradle | 2 +- equinix-openapi-metal/build.sbt | 2 +- equinix-openapi-metal/pom.xml | 2 +- 5 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.releaserc.json b/.releaserc.json index 3c449067e..58396053e 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -35,7 +35,14 @@ "@semantic-release/git", { "message": "ci: regenerate code for version ${nextRelease.version}", - "assets": ["version", "equinix-openapi-metal/src"] + "assets": [ + "version", + "equinix-openapi-metal/src", + "equinix-openapi-metal/README.md", + "equinix-openapi-metal/build.gradle", + "equinix-openapi-metal/build.sbt", + "equinix-openapi-metal/pom.xml" + ] } ] ] diff --git a/equinix-openapi-metal/README.md b/equinix-openapi-metal/README.md index 2a3f1b485..2690a8061 100644 --- a/equinix-openapi-metal/README.md +++ b/equinix-openapi-metal/README.md @@ -120,7 +120,7 @@ Add this dependency to your project's POM: com.equinix equinix-openapi-metal - 0.7.0 + 0.8.0 compile ``` @@ -136,7 +136,7 @@ Add this dependency to your project's build file: } dependencies { - implementation "com.equinix:equinix-openapi-metal:0.7.0" + implementation "com.equinix:equinix-openapi-metal:0.8.0" } ``` @@ -150,7 +150,7 @@ mvn clean package Then manually install the following JARs: -* `target/equinix-openapi-metal-0.7.0.jar` +* `target/equinix-openapi-metal-0.8.0.jar` * `target/lib/*.jar` ## Getting Started diff --git a/equinix-openapi-metal/build.gradle b/equinix-openapi-metal/build.gradle index b5db2df7b..6625bd90d 100644 --- a/equinix-openapi-metal/build.gradle +++ b/equinix-openapi-metal/build.gradle @@ -4,7 +4,7 @@ apply plugin: 'java' apply plugin: 'com.diffplug.spotless' group = 'com.equinix' -version = '0.7.0' +version = '0.8.0' buildscript { repositories { diff --git a/equinix-openapi-metal/build.sbt b/equinix-openapi-metal/build.sbt index 49b745cf0..4f5dc8491 100644 --- a/equinix-openapi-metal/build.sbt +++ b/equinix-openapi-metal/build.sbt @@ -2,7 +2,7 @@ lazy val root = (project in file(".")). settings( organization := "com.equinix", name := "equinix-openapi-metal", - version := "0.7.0", + version := "0.8.0", scalaVersion := "2.11.4", scalacOptions ++= Seq("-feature"), javacOptions in compile ++= Seq("-Xlint:deprecation"), diff --git a/equinix-openapi-metal/pom.xml b/equinix-openapi-metal/pom.xml index 7ba87cc7c..872767892 100644 --- a/equinix-openapi-metal/pom.xml +++ b/equinix-openapi-metal/pom.xml @@ -5,7 +5,7 @@ equinix-openapi-metal jar equinix-openapi-metal - 0.7.0 + 0.8.0 https://github.com/openapitools/openapi-generator OpenAPI Java