Skip to content

Commit

Permalink
update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jun 19, 2024
1 parent 65ec2f6 commit 4e294ff
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion maven-settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg2</gpg.executable>
<gpg.executable>gpg</gpg.executable>
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
</properties>
</profile>
Expand Down
27 changes: 20 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://www.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.lucee</groupId>
<artifactId>kinesis-extension</artifactId>
Expand All @@ -16,9 +16,26 @@
<artifactId>kinesis-extension</artifactId>
<bundlename>kinesis-extension</bundlename>
<bundleversion>1.0.0.79</bundleversion>
<repoURL>https://github.com/lucee/extension-kinesis/</repoURL>
</properties>

<scm>
<url>https://github.com/lucee/extension-kinesis</url>
<connection>scm:git:git://github.com/lucee/extension-kinesis.git</connection>
<developerConnection>scm:git:[email protected]:lucee/extension-kinesis.git</developerConnection>
<tag>${project.version}</tag>
</scm>

<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<profiles>
<profile>
<id>release-sign-artifacts</id>
Expand Down Expand Up @@ -47,10 +64,6 @@
</plugin>
</plugins>
</build>
<properties>
<gpg.executable>gpg2</gpg.executable>
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
</properties>
</profile>
</profiles>

Expand Down Expand Up @@ -128,7 +141,7 @@
<artifactId>${bundlename}</artifactId>
<version>${bundleversion}</version>
<repositoryId>ossrh</repositoryId>
<url>${repoURL}</url>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
<packaging>lex</packaging>
</configuration>
</execution>
Expand Down

0 comments on commit 4e294ff

Please sign in to comment.