Skip to content

Commit 9baf877

Browse files
Add environment variables
1 parent a4666be commit 9baf877

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/draft-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
milestone:
1111
types: [closed]
1212

13+
env:
14+
MVN_USR: ${{ secrets.MVN_USR }}
15+
MVN_PWD: ${{ secrets.MVN_USR }}
16+
1317
jobs:
1418
release:
1519
runs-on: ubuntu-latest

.github/workflows/java-continuous-integration.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@
88
name: Java CI
99

1010
on: [push, pull_request]
11+
env:
12+
MVN_USR: ${{ secrets.MVN_USR }}
13+
MVN_PWD: ${{ secrets.MVN_USR }}
1114

1215
jobs:
13-
16+
1417
build:
1518
permissions:
1619
packages: read

0 commit comments

Comments
 (0)