Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
chore(ci): add more paths to assets for semantic-release/git plugin (#…
Browse files Browse the repository at this point in the history
…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 <bot@equinix.noreply.github.com>
  • Loading branch information
ctreatma and equinix-labs@auto-commit-workflow authored Oct 12, 2023
1 parent 05b0322 commit 0d5176b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
9 changes: 8 additions & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
]
]
Expand Down
6 changes: 3 additions & 3 deletions equinix-openapi-metal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.equinix</groupId>
<artifactId>equinix-openapi-metal</artifactId>
<version>0.7.0</version>
<version>0.8.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -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"
}
```

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion equinix-openapi-metal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion equinix-openapi-metal/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion equinix-openapi-metal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>equinix-openapi-metal</artifactId>
<packaging>jar</packaging>
<name>equinix-openapi-metal</name>
<version>0.7.0</version>
<version>0.8.0</version>
<url>https://github.com/openapitools/openapi-generator</url>
<description>OpenAPI Java</description>
<scm>
Expand Down

0 comments on commit 0d5176b

Please sign in to comment.