Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #65 from nevermined-io/feature/latest-contracts
Browse files Browse the repository at this point in the history
update to latest contracts
  • Loading branch information
Rodolphe Marques authored Jun 10, 2022
2 parents fd5711d + 0922b3c commit c2a5a7e
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
cd nevermined-tools
rm -rf "${HOME}/.nevermined/nevermined-contracts/artifacts"
export KEEPER_VERSION=develop
export KEEPER_VERSION=latest
export GATEWAY_VERSION=develop
# start nevermined with the compute stack
Expand Down
42 changes: 30 additions & 12 deletions .github/workflows/release-github.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,39 @@
name: Github Release
name: GitHub Release

on:
push:
tags:
- 'v*.*'
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
release:
name: "Tagged Release"
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.API_TOKEN_GITHUB }}

# Build process
- uses: actions/setup-node@v3
with:
node-version: "14.x"

- name: Update CHANGELOG.md
id: changelog
run: |
npm install auto-changelog
npx auto-changelog
- name: Commit CHANGELOG.md
uses: stefanzweifel/git-auto-commit-action@v4
with:
files: |
target/*.jar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
commit_message: Automated CHANGELOG.md update
commit_options: "--no-verify --signoff"
file_pattern: CHANGELOG.md
branch: master

- name: Publish Github Release
uses: softprops/action-gh-release@v1
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
'pyopenssl',
'PyJWT', # not jwt
'PyYAML>=5.2',
'common-utils-py==1.0.0-rc7',
'contracts-lib-py==1.0.0-rc6',
'common-utils-py==1.0.0',
'contracts-lib-py==1.0.0',
'nevermined-secret-store==0.1.1',
'requests>=2.21.0',
'deprecated',
Expand Down Expand Up @@ -90,6 +90,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/nevermined-io/sdk-py',
version='0.13.0',
version='0.14.0',
zip_safe=False,
)

0 comments on commit c2a5a7e

Please sign in to comment.