Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit be0d2b8

Browse files
authored
Merge pull request #122 from MarketSquare/release/4.28.1.0
Release/4.28.1.0
2 parents 391b848 + 220a6f2 commit be0d2b8

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/maven.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,9 @@ jobs:
119119
distribution: zulu
120120
java-version: 17
121121
- name: Release Maven package
122-
run:
123-
echo $GPG_PRIVATE_KEY > .m2/private-key.txt
124-
gpg --import --batch .m2/private-key.txt
125-
rm .m2/private-key.txt
122+
run: |
123+
export GPG_TTY=$(tty)
124+
echo -n "$GPG_PRIVATE_KEY" | gpg --allow-secret-key-import --batch --import
126125
mvn clean deploy --batch-mode --activate-profiles deploy --settings ${{ github.workspace }}/.m2/settings.xml -DskipTests -B -ntp
127126
env:
128127
GPG_PRIVATE_KEY: ${{ secrets.gpg_private_key }}

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.github.marketsquare</groupId>
66
<artifactId>robotframework-seleniumlibrary</artifactId>
7-
<version>4.28.1.0-SNAPSHOT</version>
7+
<version>4.28.1.1-SNAPSHOT</version>
88
<packaging>jar</packaging>
99

1010
<name>Robot Framework :: SeleniumLibrary</name>
@@ -528,7 +528,7 @@
528528
<plugin>
529529
<groupId>org.apache.maven.plugins</groupId>
530530
<artifactId>maven-gpg-plugin</artifactId>
531-
<version>1.6</version>
531+
<version>3.2.7</version>
532532
<executions>
533533
<execution>
534534
<id>sign-artifacts</id>
@@ -549,7 +549,7 @@
549549
<plugin>
550550
<groupId>org.sonatype.plugins</groupId>
551551
<artifactId>nexus-staging-maven-plugin</artifactId>
552-
<version>1.6.7</version>
552+
<version>1.7.0</version>
553553
<extensions>true</extensions>
554554
<configuration>
555555
<serverId>ossrh</serverId>

0 commit comments

Comments
 (0)