Compare commits

11 Commits
0.1.2 ... 0.1.9

Author SHA1 Message Date
Simon Diesenreiter
49ec368b2f release: version 0.1.8 🚀
Some checks failed
CI / tests_linux (9.0.X, ubuntu-latest) (push) Blocked by required conditions
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
Upload Python Package / deploy (push) Has been cancelled
Upload Python Package / Create Release (push) Has been cancelled
2025-04-15 12:35:39 +02:00
Simon Diesenreiter
a473eccfda release: version 0.1.8 🚀 2025-04-15 12:35:32 +02:00
Simon Diesenreiter
ce82717d62 fix: additional debug outputs refs NOISSUE 2025-04-15 12:28:34 +02:00
Simon Diesenreiter
3bb39ab17c release: version 0.1.7 🚀
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
Upload Python Package / Create Release (push) Successful in 22s
Upload Python Package / deploy (push) Successful in 3m28s
2025-04-15 11:59:51 +02:00
Simon Diesenreiter
a66615c6fc fix: more fixes in release logic refs NOISSUE 2025-04-15 11:59:47 +02:00
Simon Diesenreiter
b054389b16 release: version 0.1.6 🚀
Some checks failed
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
Upload Python Package / deploy (push) Has been cancelled
Upload Python Package / Create Release (push) Has been cancelled
2025-04-15 11:58:09 +02:00
Simon Diesenreiter
71fb945de2 fix: makefile issues on sh refs NOISSUE 2025-04-15 11:57:59 +02:00
b4fab0deee fix: messed up release refs NOISSUE
Some checks failed
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
Upload Python Package / Create Release (push) Successful in 20s
Upload Python Package / deploy (push) Failing after 1m31s
2025-04-14 22:54:14 +02:00
67472ac305 release: version 0.1.4 🚀
Some checks failed
CI / linter (9.0.X, ubuntu-latest) (push) Failing after 1m13s
Upload Python Package / Create Release (push) Successful in 1m11s
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been skipped
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
Upload Python Package / deploy (push) Has been cancelled
2025-04-14 22:52:40 +02:00
e797a7f995 fix: repo casing refs NOISSUE 2025-04-14 22:52:29 +02:00
13ac4debdb release: version 0.1.1 🚀
Some checks failed
CI / tests_linux (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
SonarQube Scan / SonarQube Trigger (push) Has been cancelled
Upload Python Package / Create Release (push) Successful in 44s
Upload Python Package / deploy (push) Failing after 1m24s
2025-04-14 22:47:40 +02:00
6 changed files with 73 additions and 4 deletions

View File

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

View File

@@ -59,7 +59,7 @@ jobs:
registry: git.disi.dev
- name: Build and publish
run: |
REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F '/' '{print $1}')
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/song-of-the-day:$(cat $REPOSITORY_NAME/VERSION)" ./song_of_the_day
docker push "git.disi.dev/$REPOSITORY_OWNER/song-of-the-day:$(cat $REPOSITORY_NAME/VERSION)"

View File

@@ -5,10 +5,77 @@ Changelog
(unreleased)
------------
0.1.8 (2025-04-15)
------------------
Fix
~~~
- Additional debug outputs refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.7 (2025-04-15)
------------------
Fix
~~~
- More fixes in release logic refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.6 (2025-04-15)
------------------
Fix
~~~
- Makefile issues on sh refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.5 (2025-04-14)
------------------
Fix
~~~
- Messed up release refs NOISSUE. [Simon Diesenreiter]
0.1.4 (2025-04-14)
------------------
Fix
~~~
- Repo casing refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.3 (2025-04-14)
------------------
0.1.2 (2025-04-14)
------------------
0.1.1 (2025-04-14)
------------------
Fix
~~~
- Correct container repo path, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.0 (2025-04-14)
------------------

View File

@@ -2,7 +2,7 @@
.PHONY: issetup
issetup:
@[ -f .git/hooks/commit-msg ] || [ -v SKIP_MAKE_SETUP_CHECK ] || (echo "You must run 'make setup' first to initialize the repo!" && exit 1)
@[ -f .git/hooks/commit-msg ] || [ $SKIP_MAKE_SETUP_CHECK = "true" ] || (echo "You must run 'make setup' first to initialize the repo!" && exit 1)
.PHONY: setup
setup:

View File

@@ -17,6 +17,7 @@ userCheckTimer.OnOccurence += async (s, ea) =>
var needsSaving = false;
foreach (var memberId in memberList)
{
Console.WriteLine("found member: " = memberId);
var foundUser = dci.Users.Where(u => u.SignalMemberId == memberId).SingleOrDefault();
if (foundUser == null)
{

View File

@@ -1 +1 @@
0.1.1
0.1.8