File tree Expand file tree Collapse file tree 3 files changed +22
-10
lines changed Expand file tree Collapse file tree 3 files changed +22
-10
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <settings xmlns =" http://maven.apache.org/SETTINGS/1.0.0"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/SETTINGS/1.0.0
4
+ http://maven.apache.org/xsd/settings-1.0.0.xsd" >
5
+ <servers >
6
+ <server >
7
+ <id >github-vorpal-research-kotlin-maven</id >
8
+ <username >${env.GITHUB_ACTOR}</username >
9
+ <password >${env.GITHUB_TOKEN}</password >
10
+ </server >
11
+ </servers >
12
+ </settings >
Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ jobs:
15
15
uses : actions/setup-java@v1
16
16
with :
17
17
java-version : 1.8
18
- - name : Deploy to Bintray
19
- id : deploy-to-bintray
18
+ - name : Deploy to Github Packages
19
+ id : deploy-to-packages
20
20
run : |
21
21
mvn versions:set -DnewVersion=${{ github.event.release.tag_name }}
22
- mvn deploy -s .github/bintray -settings.xml || echo "deploy failed" >&2
22
+ mvn deploy -s .github/github -settings.xml || echo "deploy failed" >&2
23
23
env :
24
- BINTRAY_USERNAME : ${{ secrets.bintray_username }}
25
- BINTRAY_PASSWORD : ${{ secrets.bintray_password }}
24
+ GITHUB_ACTOR : vorpal-reseacher
25
+ GITHUB_TOKEN : ${{ secrets.ORG_GITHUB_TOKEN }}
26
26
27
27
- name : Move sources jar file
28
28
run : mv target/*-sources.jar sources.jar
Original file line number Diff line number Diff line change 2
2
<modelVersion >4.0.0</modelVersion >
3
3
<groupId >ru.spbstu</groupId >
4
4
<artifactId >g4toEBNF</artifactId >
5
- <version >0.0.0.4 -SNAPSHOT</version >
5
+ <version >0.0.0.5 -SNAPSHOT</version >
6
6
<name >g4 grammar to markdown</name >
7
7
8
8
<scm >
9
9
<
connection >scm:git:
[email protected] :belyaev-mikhail/grammar-converter.git</
connection >
10
10
<
developerConnection >scm:git:
[email protected] :belyaev-mikhail/grammar-converter.git</
developerConnection >
11
11
<url >https://github.com/belyaev-mikhail/grammar-converter</url >
12
- <tag >HEAD</tag >
12
+ <tag >HEAD</tag >
13
13
</scm >
14
14
15
15
<properties >
16
16
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
17
17
<antlr4 .visitor>true</antlr4 .visitor>
18
18
<antlr4 .listener>true</antlr4 .listener>
19
- <kotlin .version>1.3.61 </kotlin .version>
19
+ <kotlin .version>1.4.31 </kotlin .version>
20
20
<antlr4 .version>4.8</antlr4 .version>
21
21
</properties >
22
22
200
200
201
201
<distributionManagement >
202
202
<repository >
203
- <id >bintray -vorpal-research-kotlin-maven</id >
203
+ <id >github -vorpal-research-kotlin-maven</id >
204
204
<name >vorpal-research-kotlin-maven</name >
205
- <url >https://api.bintray. com/maven/ vorpal-research/kotlin-maven/ ${artifactId} /;publish=1 </url >
205
+ <url >https://maven.pkg.github. com/vorpal-research/kotlin-maven</url >
206
206
</repository >
207
207
</distributionManagement >
208
208
You can’t perform that action at this time.
0 commit comments