Skip to content

Commit

Permalink
test creating a snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jun 19, 2024
1 parent 4e294ff commit 2891ac9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- '**/v**'
pull_request:
branches:
- master
Expand All @@ -28,4 +29,8 @@ jobs:
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: |
mvn -B -e -f pom.xml clean deploy --settings maven-settings.xml
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
mvn -B -e -f pom.xml clean deploy -P release-sign-artifacts --settings maven-settings.xml
else
mvn -B -e -f pom.xml clean deploy --settings maven-settings.xml
fi
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.lucee</groupId>
<artifactId>kinesis-extension</artifactId>
<version>1.0.0.79</version>
<version>1.0.0.79-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Kinesis Extension</name>

Expand All @@ -15,7 +15,7 @@
<groupId>org.lucee</groupId>
<artifactId>kinesis-extension</artifactId>
<bundlename>kinesis-extension</bundlename>
<bundleversion>1.0.0.79</bundleversion>
<bundleversion>1.0.0.79-SNAPSHOT</bundleversion>
</properties>

<scm>
Expand Down

0 comments on commit 2891ac9

Please sign in to comment.