Skip to content

Commit

Permalink
Merge branch 'main' into ci/fix-integration-failure
Browse files Browse the repository at this point in the history
  • Loading branch information
patlo-iog committed Apr 29, 2024
2 parents 6887777 + ad42ea3 commit e83c86c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-clients.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
runs-on: ubuntu-latest
env:
VERSION_TAG: ${{inputs.releaseTag || github.ref_name}}
GITHUB_ACTOR: ${{secrets.GITHUB_ACTOR}}
GITHUB_ACTOR: "hyperledger-bot"
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}

steps:
- name: Checkout
Expand All @@ -30,7 +30,7 @@ jobs:
with:
node-version: "lts/*"
registry-url: https://npm.pkg.github.com/
scope: "@hyperledger-labs"
scope: "@hyperledger"

- name: Setup Python
uses: actions/setup-python@v4
Expand All @@ -44,8 +44,8 @@ jobs:
uses: docker/login-action@v2
with:
registry: ghcr.io
username: hyperledger-bot
password: ${{ secrets.GITHUB_TOKEN }}
username: ${{ env.GITHUB_ACTOR }}
password: ${{ env.GITHUB_TOKEN }}

- name: Setup yq - portable yaml processor
uses: mikefarah/yq@v4.34.2
Expand Down
2 changes: 1 addition & 1 deletion cloud-agent/client/kotlin/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

rootProject.name = 'identus--kotlin-client'
rootProject.name = 'cloud-agent-client-kotlin'
12 changes: 6 additions & 6 deletions cloud-agent/client/python/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding: utf-8

"""
Prism Agent
Identus Cloud Agent
No description provided
Expand All @@ -11,7 +11,7 @@

from setuptools import setup, find_packages # noqa: H301

NAME = "open-enterprise-agent-python-client"
NAME = "cloud-agent-client-python"
VERSION = "0.0.1"

REQUIRES = [
Expand All @@ -26,16 +26,16 @@
setup(
name=NAME,
version=VERSION,
description="Prism Agent Client",
description="Identus Cloud Agent Client",
author="Allain Magyar",
author_email="",
url="https://github.com/hyperledger-labs/open-enterprise-agent",
keywords=["Prism Agent"],
url="https://github.com/hyperledger/identus-cloud-agent",
keywords=["Identus Cloud Agent Client"],
python_requires=">=3.7",
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description="""\
Prism-agent models generated from OpenAPI Specification
Identus Cloud Agent models generated from the OpenAPI Specification
"""
)
6 changes: 3 additions & 3 deletions cloud-agent/client/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@hyperledger-labs/open-enterprise-agent-ts-client",
"name": "@hyperledger/cloud-agent-client-ts",
"version": "0.0.1",
"description": "TypeScript OpenAPI client for Open Enterprise Agent",
"description": "TypeScript OpenAPI client for Identus Cloud Agent",
"author": "allain.magyar@iohk.io",
"repository": {
"type": "git",
"url": "https://github.com/hyperledger-labs/open-enterprise-agent/"
"url": "https://github.com/hyperledger/identus-cloud-agent/"
},
"keywords": [
"fetch",
Expand Down
2 changes: 1 addition & 1 deletion tests/integration-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
testImplementation("io.ktor:ktor-server-netty:2.3.0")
testImplementation("io.ktor:ktor-client-apache:2.3.0")
// RestAPI client
testImplementation("org.hyperledger.identus:identus-kotlin-client:1.32.0")
testImplementation("org.hyperledger.identus:cloud-agent-client-kotlin:1.32.0")
// Test helpers library
testImplementation("io.iohk.atala:atala-automation:0.3.2")
// Hoplite for configuration
Expand Down

0 comments on commit e83c86c

Please sign in to comment.