Skip to content

Commit 5b296a4

Browse files
authored
Merge pull request #74 from filip26/feat/publish-action
Feat/publish action
2 parents cac5b23 + 543e2b9 commit 5b296a4

4 files changed

Lines changed: 50 additions & 4 deletions

File tree

.github/maven-central-settings.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"
3+
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5+
<servers>
6+
<server>
7+
<id>ossrh</id>
8+
<username>${env.MAVEN_USERNAME}</username>
9+
<password>${env.MAVEN_PASSWORD}</password>
10+
</server>
11+
</servers>
12+
</settings>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Publish JRE11 to the Maven Central
2+
on:
3+
release:
4+
types: [created]
5+
6+
workflow_dispatch:
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
environment: maven-central
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Set up JDK 11
15+
uses: actions/setup-java@v4
16+
with:
17+
java-version: 11
18+
distribution: 'temurin'
19+
server-id: ossrh
20+
- name: Import GPG Key
21+
uses: crazy-max/ghaction-import-gpg@v6
22+
with:
23+
gpg_private_key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
24+
passphrase: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
25+
- name: Publish package
26+
run: mvn -B -Pmaven-central -Dgpg.passphrase=${{secrets.MAVEN_GPG_PASSPHRASE}} -s .github/maven-central-settings.xml deploy
27+
env:
28+
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
29+
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,13 @@ An implementation of the [Decentralized Identifiers (DIDs) v1.0](https://www.w3.
2424
<dependency>
2525
<groupId>com.apicatalog</groupId>
2626
<artifactId>carbon-did</artifactId>
27-
<version>0.3.0</version>
27+
<version>0.4.0</version>
28+
</dependency>
29+
<dependency>
30+
<groupId>com.apicatalog</groupId>
31+
<artifactId>copper-multibase</artifactId>
32+
<version>0.5.0</version>
2833
</dependency>
29-
3034
```
3135

3236
#### Gradle
@@ -35,7 +39,8 @@ Android 12+ (API Level >=32)
3539

3640

3741
```gradle
38-
implementation("com.apicatalog:carbon-did:0.3.0")
42+
implementation("com.apicatalog:carbon-did:0.4.0")
43+
implementation("com.apicatalog:copper-multibase:0.5.0")
3944
```
4045

4146
Do you need to support an older Android version? [Contact me](mailto:filip26@gmail.com)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.apicatalog</groupId>
88
<artifactId>carbon-did</artifactId>
99

10-
<version>0.4.0-SNAPSHOT</version>
10+
<version>0.4.0</version>
1111
<packaging>jar</packaging>
1212

1313
<url>https://github.com/filip26/carbon-decentralized-identifiers</url>

0 commit comments

Comments
 (0)