Skip to content

Commit

Permalink
Create release 1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakehouse Engine committed Jun 17, 2024
1 parent 355fa61 commit 22d7cb2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -301,14 +301,14 @@ create-changelog:
echo "" >> CHANGELOG.md && \
git log --no-decorate --pretty=format:"#### [%cs] [%(describe)]%n [%h]($(commits_url)%H) %s" -n 1000 >> CHANGELOG.md

bump-up-version:
bump-up-version: create-changelog
$(container_cli) run --rm \
-w /app \
-v "$$PWD":/app \
$(image_name):$(version) \
/bin/bash -c 'bump2version --config-file cicd/.bumpversion.cfg $(increment)'

prepare-release: bump-up-version create-changelog
prepare-release: bump-up-version
echo "Prepared version and changelog to release!"

commit-release:
Expand Down
2 changes: 2 additions & 0 deletions cicd/Jenkinsfile_deploy
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ pipeline {
stage('Deploy to Pypi') {
steps {
script {
// we are forcing make build as it was not happening sometimes, for no reason.
sh 'make build os_deployment=True'
sh 'make deploy-to-pypi-and-clean os_deployment=True version=' + "${env.DEPLOY_VERSION}" + ' pypi_credentials_file=$PYPI_CREDENTIALS'
}
}
Expand Down

0 comments on commit 22d7cb2

Please sign in to comment.