Skip to content

Commit

Permalink
Merge pull request #663 from jamshale/fix-release-workflows
Browse files Browse the repository at this point in the history
Fix release workflows
  • Loading branch information
jamshale authored Oct 21, 2024
2 parents b2d3fa8 + 0029125 commit 5e64f1b
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 56 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create-release-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
contents: write
pull-requests: write
runs-on: ubuntu-latest
if: github.repository == 'openwallet-foundation/acapy-plugins'
if: github.repository == 'jamshale/acapy-plugins'
outputs:
current_available_version: ${{ steps.current_available_version.outputs.version }}
current_global_version: ${{ steps.current_global_version.outputs.version }}
Expand Down Expand Up @@ -49,15 +49,15 @@ jobs:
# Install poetry
#----------------------------------------------
- name: Install poetry
run: pipx install poetry
run: python3 -m pipx install poetry
id: setup-poetry
#----------------------------------------------
# Get the latest version of acapy-agent from pypi
#----------------------------------------------
- name: Get latest acapy-agent version
id: current_available_version
run: |
remote_version=$(pip index versions acapy-agent)
remote_version=$(python3 -m pip index versions acapy-agent)
version=$(grep -oP '(?<=Available versions: ).*?(?=,)' <<< "$remote_version")
echo current_available_version=$version >> $GITHUB_OUTPUT
echo "Remote version = $version"
Expand Down
106 changes: 53 additions & 53 deletions plugin_globals/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5e64f1b

Please sign in to comment.