You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I am trying to integrate semantic release in my project together with pixi. Essentially, this is the Github Actions workflow that I am looking at:
Lint
Run tests
Release (semantic release, updates version, tags, and release based on commit messages)
Build containers, push to ECR
However, the issue that I am facing now is that once the versions have been updated in step 3 (release), this updates pyproject and other places where versions are captured, which means that the lockfile is no longer up to date (because the lockfile contains the previous app version).
This then results in step 4 failing, as the build step is trying to build the container with an outdated lockfile.
May I know how I might be able to integrate this correctly? Thank you.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I am trying to integrate semantic release in my project together with pixi. Essentially, this is the Github Actions workflow that I am looking at:
However, the issue that I am facing now is that once the versions have been updated in step 3 (release), this updates pyproject and other places where versions are captured, which means that the lockfile is no longer up to date (because the lockfile contains the previous app version).
This then results in step 4 failing, as the build step is trying to build the container with an outdated lockfile.
May I know how I might be able to integrate this correctly? Thank you.
Beta Was this translation helpful? Give feedback.
All reactions