Skip to content

Commit

Permalink
Merge pull request #665 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 + 7f8ed18 commit c0b00bf
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 55 deletions.
4 changes: 2 additions & 2 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 @@ -58,7 +58,7 @@ jobs:
id: current_available_version
run: |
remote_version=$(pip index versions acapy-agent)
version=$(grep -oP '(?<=Available versions: ).*?(?=,)' <<< "$remote_version")
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 c0b00bf

Please sign in to comment.