Fix error in workflow YAML file and update ingestion-core version (#6193)

This commit is contained in:
Nahuel 2022-07-19 15:41:21 +02:00 committed by GitHub
parent 615286ee50
commit ee21d6b10e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -74,7 +74,7 @@ jobs:
source env/bin/activate source env/bin/activate
make coverage make coverage
rm pom.xml rm pom.xml
# fix coverage xml for github # fix coverage xml report for github
sed -i 's/src\/metadata/\/github\/workspace\/ingestion\/src\/metadata/g' sed -i 's/src\/metadata/\/github\/workspace\/ingestion\/src\/metadata/g'
- name: Push Results to Sonar - name: Push Results to Sonar

View File

@ -7,5 +7,5 @@ Provides metadata version information.
from incremental import Version from incremental import Version
__version__ = Version("metadata", 0, 12, 0) __version__ = Version("metadata", 0, 12, 0, dev=0)
__all__ = ["__version__"] __all__ = ["__version__"]