File tree 3 files changed +35
-11
lines changed
3 files changed +35
-11
lines changed Original file line number Diff line number Diff line change 37
37
env :
38
38
GITHUB_USERNAME : makbn
39
39
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
40
- run : mvn -- settings .mvn/ settings.xml deploy
40
+ run : mvn -e -- settings settings.xml deploy
41
41
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <settings xmlns =" http://maven.apache.org/SETTINGS/1.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2
+ xsi : schemaLocation =" http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" >
3
+
4
+ <activeProfiles >
5
+ <activeProfile >github</activeProfile >
6
+ </activeProfiles >
7
+
8
+ <profiles >
9
+ <profile >
10
+ <id >github</id >
11
+ <repositories >
12
+ <repository >
13
+ <id >central</id >
14
+ <url >https://repo1.maven.org/maven2</url >
15
+ </repository >
16
+ <repository >
17
+ <id >github</id >
18
+ <url >https://maven.pkg.github.com/makbn/java_leaflet</url >
19
+ <snapshots >
20
+ <enabled >true</enabled >
21
+ </snapshots >
22
+ </repository >
23
+ </repositories >
24
+ </profile >
25
+ </profiles >
26
+
27
+ <servers >
28
+ <server >
29
+ <id >github</id >
30
+ <username >${env.GITHUB_ACTOR}</username >
31
+ <password >${env.GITHUB_TOKEN}</password >
32
+ </server >
33
+ </servers >
34
+ </settings >
You can’t perform that action at this time.
0 commit comments