add version.txt step to release pipeline (#1493)

* add version.txt step to release pipeline

* refresh git status

* make minicon e2e test less flaky
This commit is contained in:
3u13r 2023-03-31 12:41:32 +02:00 committed by GitHub
parent 8ffd1dcf3f
commit efe4681214
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 65 additions and 31 deletions

View file

@ -24,6 +24,6 @@ timestamp() {
echo "REPO_URL https://github.com/edgelesssys/constellation.git"
echo "STABLE_STAMP_COMMIT $(git rev-parse HEAD)"
echo "STABLE_STAMP_STATE $(git diff-index --quiet HEAD -- && echo "clean" || echo "dirty")"
echo "STABLE_STAMP_STATE $(git update-index -q --really-refresh && git diff-index --quiet HEAD -- && echo "clean" || echo "dirty")"
echo "STABLE_STAMP_VERSION $(pseudo_version)"
echo "STABLE_STAMP_TIME $(timestamp)"