forked from openwallet-foundation/acapy-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for OWF move. (openwallet-foundation#1075)
* Update aca-py package with acapy-agent 1.1.0 Signed-off-by: jamshale <[email protected]> * Fix missing import Signed-off-by: jamshale <[email protected]> * Install basicmessage plugin from fork for testing Signed-off-by: jamshale <[email protected]> * Manually update RELEASES.md with 1.1.0 Signed-off-by: jamshale <[email protected]> * Change ghrc reference to valid image Signed-off-by: jamshale <[email protected]> * Update site doc name Signed-off-by: jamshale <[email protected]> --------- Signed-off-by: jamshale <[email protected]>
- Loading branch information
Showing
102 changed files
with
4,042 additions
and
4,052 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,23 +51,23 @@ jobs: | |
run: pipx install poetry | ||
id: setup-poetry | ||
#---------------------------------------------- | ||
# Get the latest version of aries-cloudagent from pypi | ||
# Get the latest version of acapy-agent from pypi | ||
#---------------------------------------------- | ||
- name: Get latest aries-cloudagent version | ||
- name: Get latest acapy-agent version | ||
id: current_available_version | ||
run: | | ||
remote_version=$(pip index versions aries-cloudagent) | ||
remote_version=$(pip index versions acapy-agent) | ||
version=$(grep -oP '(?<=Available versions: ).*?(?=,)' <<< "$remote_version") | ||
echo current_available_version=$version >> $GITHUB_OUTPUT | ||
echo "Remote version = $version" | ||
#---------------------------------------------- | ||
# Check the latest version from plugins_global lock file | ||
#---------------------------------------------- | ||
- name: Get global aries-cloudagent version from plugins repo | ||
- name: Get global acapy-agent version from plugins repo | ||
id: current_global_version | ||
run: | | ||
cd plugin_globals | ||
lock_version=$(grep -A1 'name = "aries-cloudagent"' poetry.lock | grep -v 'name = "aries-cloudagent"') | ||
lock_version=$(grep -A1 'name = "acapy-agent"' poetry.lock | grep -v 'name = "acapy-agent"') | ||
version=$(grep -oP '(?<=").*?(?=")' <<< "$lock_version") | ||
echo current_global_version=$version >> $GITHUB_OUTPUT | ||
echo "Global version = $version" | ||
|
@@ -79,10 +79,10 @@ jobs: | |
run: | | ||
echo "Re-Release manually requested. Skipping upgrade available check." | ||
#---------------------------------------------- | ||
# Check if aries-cloudagent upgrade available | ||
# Check if acapy-agent upgrade available | ||
# If the global version is greater than or equal to the remote version, exit | ||
#---------------------------------------------- | ||
- name: Check if aries-cloudagent upgrade available | ||
- name: Check if acapy-agent upgrade available | ||
id: upgrade_available | ||
if: github.event.inputs.re_release != 'true' | ||
run: | | ||
|
@@ -97,21 +97,21 @@ jobs: | |
} | ||
if [ $(sem_version $current_global_version) -ge $(sem_version $current_available_version) ]; then | ||
echo "Version of aries-cloudagent is up to date" | ||
echo "Version of acapy-agent is up to date" | ||
exit 0 | ||
fi | ||
echo available=true >> $GITHUB_OUTPUT | ||
echo "Detected aries-cloudagent upgrade available..." | ||
echo "Detected acapy-agent upgrade available..." | ||
#---------------------------------------------- | ||
# Update global aries-cloudagent version in lock file | ||
# Update global acapy-agent version in lock file | ||
#---------------------------------------------- | ||
- name: Update global acapy version | ||
if: ${{ steps.upgrade_available.outputs.available == 'true' && github.event.inputs.re_release != 'true'}} | ||
run: | | ||
python repo_manager.py 3 | ||
echo "Update global acapy version" | ||
#---------------------------------------------- | ||
# Update all plugins with aries-cloudagent and global and local dependencies | ||
# Update all plugins with acapy-agent and global and local dependencies | ||
#---------------------------------------------- | ||
- name: Run global updates | ||
if: ${{ steps.upgrade_available.outputs.available == 'true' && github.event.inputs.re_release != 'true'}} | ||
|
@@ -412,7 +412,7 @@ jobs: | |
committer: Release Bot <[email protected]> | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: "Release v${{ steps.prepare_pr.outputs.tag_version }} Upgrades" | ||
title: "Release for aries-cloudagent v${{ steps.prepare_pr.outputs.tag_version }}" | ||
title: "Release for acapy-agent v${{ steps.prepare_pr.outputs.tag_version }}" | ||
body: "${{ steps.prepare_pr.outputs.pr_body }}" | ||
branch: "release-v${{ steps.prepare_pr.outputs.tag_version }}" | ||
base: "main" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.