7 Commits

Author SHA1 Message Date
1cd16ebc09 release: version 0.1.3 🚀
All checks were successful
Build Docker image / Create Release (push) Successful in 6s
Build Docker image / deploy (push) Successful in 43s
2025-05-24 21:13:51 +02:00
8edc710be8 fix: more CI issues, refs NOISSUE 2025-05-24 21:13:49 +02:00
a5133b1ba0 release: version 0.1.2 🚀
Some checks failed
Build Docker image / Create Release (push) Successful in 9s
Build Docker image / deploy (push) Failing after 8s
2025-05-24 21:12:01 +02:00
a4d11f9212 fix: CI issues, refs NOISSUE 2025-05-24 21:11:58 +02:00
d043e4fc99 release: version 0.1.1 🚀
Some checks failed
Build Docker image / Create Release (push) Successful in 7s
Build Docker image / deploy (push) Failing after 8s
2025-05-24 21:09:35 +02:00
78e6666201 fix: create new build, refs NOISSUE 2025-05-24 21:09:33 +02:00
7cc1ae22bb ci: add missing CI files, refs NOISSUE 2025-05-24 21:07:10 +02:00
6 changed files with 56 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
### Summary :memo:
_Write an overview about it._
### Details
_Describe more what you did on changes._
1. (...)
2. (...)
### Bugfixes :bug: (delete if dind't have any)
-
### Checks
- [ ] Closed #798
- [ ] Tested Changes
- [ ] Stakeholder Approval

View File

@@ -87,8 +87,8 @@ start() {
gitchangelog | grep -v "[rR]elease:" > HISTORY.md
git add HISTORY.md
echo $new_version > song_of_the_day/VERSION
git add song_of_the_day/VERSION
echo $new_version > VERSION
git add VERSION
git commit -m "release: version $new_version 🚀"
echo "creating git tag : $new_version"
git tag $new_version

4
.gitea/release_message.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
# generates changelog since last release
previous_tag=$(git tag --sort=-creatordate | sed -n 2p)
git shortlog "${previous_tag}.." | sed 's/^./ &/'

View File

@@ -41,7 +41,7 @@ jobs:
- name: Check version match
run: |
REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_')
if [ "$(cat $REPOSITORY_NAME/VERSION)" = "${GITHUB_REF_NAME}" ] ; then
if [ "$(cat VERSION)" = "${GITHUB_REF_NAME}" ] ; then
echo "Version matches successfully!"
else
echo "Version must match!"
@@ -57,5 +57,5 @@ jobs:
run: |
REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $1}' | tr '[:upper:]' '[:lower:]')
REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $2}' | tr '-' '_')
docker build -t "git.disi.dev/$REPOSITORY_OWNER/odoo17:$(cat $REPOSITORY_NAME/VERSION)" ./
docker push "git.disi.dev/$REPOSITORY_OWNER/odoo17:$(cat $REPOSITORY_NAME/VERSION)"
docker build -t "git.disi.dev/$REPOSITORY_OWNER/odoo17:$(cat VERSION)" ./
docker push "git.disi.dev/$REPOSITORY_OWNER/odoo17:$(cat VERSION)"

View File

@@ -4,6 +4,37 @@ Changelog
(unreleased)
------------
Fix
~~~
- More CI issues, refs NOISSUE. [Simon Diesenreiter]
0.1.2 (2025-05-24)
------------------
Fix
~~~
- CI issues, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.1 (2025-05-24)
------------------
Fix
~~~
- Create new build, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
- Ci: add missing CI files, refs NOISSUE. [Simon Diesenreiter]
0.1.0 (2025-05-24)
------------------
- Feat: initial commit and update partner logic, refs NOISSUE. [Simon
Diesenreiter]

1
VERSION Normal file
View File

@@ -0,0 +1 @@
0.1.3