Skip to content
Snippets Groups Projects
Commit ae7814eb authored by gling's avatar gling
Browse files

Release 0.0.4

parent 20998c4c
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,8 @@ publish-job: # Publish to gitlab package repository
script:
- apk add poetry
- poetry build
- poetry export > requirements.txt
- cd dist && pip3 download -r requirements.txt
- poetry config repositories.gitlab "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi"
- poetry config http-basic.gitlab gitlab-ci-token "$CI_JOB_TOKEN"
- poetry publish --repository gitlab
......
[tool.poetry]
name = "chipforge"
version = "0.0.3"
version = "0.0.4"
description = "Chip Forge Python Utilities"
repository = "https://git.ece.iastate.edu/isu-chip-fab/chiputil.git"
authors = ["Gregory Ling"]
......
#!/bin/sh
set -e
poetry version patch
VERSION=$(poetry version -s)
git add pyproject.toml
git commit -m "Release $VERSION"
git push
git tag $VERSION
git push origin $VERSION
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment