Skip to content

Commit c559080

Browse files
committed
Fixed pipeline
1 parent 26c8c6f commit c559080

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish_to_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
- name: Fetch local package version
2929
run: |
3030
packageLocalVersion=$(python -c 'from version import version; print(version);')
31-
echo "localVersion=packageLocalVersion" >> $GITHUB_ENV
31+
echo "localVersion=$packageLocalVersion" >> $GITHUB_ENV
3232
3333
- name: Fetch remote package version
3434
run: |
3535
packageRemoteVersion=$(python -c "exec(\"import pkg_resources\\ntry: print(pkg_resources.get_distribution('python_ms_core').version)\\nexcept pkg_resources.DistributionNotFound: print('0.0.0');\")")
36-
echo "remoteVersion=packageRemoteVersion" >> $GITHUB_ENV
36+
echo "remoteVersion=$packageRemoteVersion" >> $GITHUB_ENV
3737
3838
- name: Printing local and remote versions
3939
run: echo "Local version ${{env.localVersion}} and remote version ${{env.remoteVersion}}"

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change log
22

3-
### 0.0.12
3+
### 0.0.1
44
- Introduces Topic and subscription methods in Core.
55
- Added methods
66
- Core.ge_topic()

0 commit comments

Comments
 (0)