Skip to content

Commit 5a56687

Browse files
author
circleci
committed
New Commit
Adds CI Signed-off-by: ITX CI <[email protected]>
1 parent 14346d1 commit 5a56687

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/merge.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
env:
1414
MAVEN_CLI_OPTS: "-s .m2/settings.xml --batch-mode"
15-
MAVEN_OPTS: "-Dmaven.repo.local=$HOME/.m2/repository"
1615
steps:
16+
- name: Set Maven Options
17+
run:
18+
echo "::set-env name=MAVEN_OPTS::-Dmaven.repo.local=$HOME/.m2/repository"
1719
- uses: actions/checkout@v2
1820
- name: Set up Java 1.8
1921
uses: actions/setup-java@v1

.github/workflows/pull_request.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
env:
1414
MAVEN_CLI_OPTS: "-s .m2/settings.xml --batch-mode"
15-
MAVEN_OPTS: "-Dmaven.repo.local=$HOME/.m2/repository"
1615
steps:
16+
- name: Set Maven Options
17+
run:
18+
echo "::set-env name=MAVEN_OPTS::-Dmaven.repo.local=$HOME/.m2/repository"
1719
- uses: actions/checkout@v2
1820
- name: Set up Java 1.8
1921
uses: actions/setup-java@v1

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
env:
1414
MAVEN_CLI_OPTS: "-s .m2/settings.xml --batch-mode"
15-
MAVEN_OPTS: "-Dmaven.repo.local=$HOME/.m2/repository"
1615
steps:
1716
- uses: actions/checkout@v2
1817
- name: Set up Java 1.8

0 commit comments

Comments
 (0)