Skip to content

Commit ab0cad3

Browse files
author
Vignesh Kennadi
committed
corrected build pipeline
1 parent b224011 commit ab0cad3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/build-lint-test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
distribution: 'temurin'
2121
java-version: '11'
2222
cache: maven
23+
gpg-passphrase: GPG_PASSPHRASE
2324

2425
- name: Import GPG Key
2526
run: |
@@ -30,5 +31,7 @@ jobs:
3031
- name: Build and test post generation
3132
run: |
3233
export GPG_TTY=$(tty)
33-
mvn clean verify -DskipTests=true -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }}
34+
mvn clean verify -DskipTests=true
35+
env:
36+
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
3437
working-directory: Xero-Java

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
name: Publish
22
on:
3-
push:
43
release:
54
types: [published]
65

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>xero-java</artifactId>
66
<packaging>jar</packaging>
77
<name>xero-java</name>
8-
<version>8.3.0-alpha.4</version>
8+
<version>8.3.0</version>
99
<url>https://github.com/XeroAPI/Xero-Java</url>
1010
<description>This is the official Java SDK for Xero API</description>
1111
<licenses>

0 commit comments

Comments
 (0)