Skip to content

Commit

Permalink
ci: Fix Release Script (#15)
Browse files Browse the repository at this point in the history
Signed-off-by: Ahmed Moussa <[email protected]>
  • Loading branch information
hamada147 committed Feb 6, 2024
1 parent cb52a8d commit b951e89
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
token: ${{ secrets.ATALA_GITHUB_TOKEN }}
fetch-depth: 0

- uses: actions/setup-node@v4
with:
node-version: '>=20.8.1'

- name: "Validate Gradle Wrapper"
uses: gradle/wrapper-validation-action@v1

Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
2 changes: 1 addition & 1 deletion didpeer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Example of DID documents:
"id": "did:peer:0z6MkqRYqQiSgvZQdnBytw86Qbs2ZWUkGv22od935YF4s8M7V",
"authentication": [
{
"id": "did:peer:0z6MkqRYqQiSgvZQdnBytw86Qbs2ZWUkGv22od935YF4s8M7V#",
"id": "did:peer:0z6MkqRYqQiSgvZQdnBytw86Qbs2ZWUkGv22od935YF4s8M7V#key-1",
"type": "Ed25519VerificationKey2020",
"controller": "did:peer:0z6MkqRYqQiSgvZQdnBytw86Qbs2ZWUkGv22od935YF4s8M7V",
"publicKeyMultibase": "z6MkqRYqQiSgvZQdnBytw86Qbs2ZWUkGv22od935YF4s8M7V"
Expand Down
16 changes: 10 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atala-prism-didcomm-kmm",
"version": "0.0.1",
"version": "1.0.0",
"description": "atala-prism-didcomm-kmm",
"directories": {
"example": "examples"
Expand All @@ -14,12 +14,16 @@
"bugs": {
"url": "https://github.com/input-output-hk/atala-prism-didcomm-kmm/issues"
},
"engines" : {
"npm" : ">=10.0.0",
"node" : ">=20.8.1"
},
"homepage": "https://github.com/input-output-hk/atala-prism-didcomm-kmm#readme",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"gradle-semantic-release-plugin": "^1.9.0",
"semantic-release": "^22.0.12",
"semantic-release-slack-bot": "^4.0.2"
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"gradle-semantic-release-plugin": "1.9.1",
"semantic-release": "23.0.0",
"semantic-release-slack-bot": "4.0.2"
}
}

0 comments on commit b951e89

Please sign in to comment.