Compare commits

1 Commits
0.1.6 ... 0.1.2

Author SHA1 Message Date
a76e73bc92 release: version 0.1.1 🚀
Some checks failed
CI / linter (9.0.X, ubuntu-latest) (push) Has been cancelled
CI / tests_linux (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-14 22:43:08 +02:00
5 changed files with 4 additions and 43 deletions

View File

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

View File

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

View File

@@ -5,48 +5,10 @@ Changelog
(unreleased) (unreleased)
------------ ------------
Fix
~~~
- Makefile issues on sh refs NOISSUE. [Simon Diesenreiter]
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 Fix
~~~ ~~~
- Correct container repo path, refs NOISSUE. [Simon Diesenreiter] - Correct container repo path, refs NOISSUE. [Simon Diesenreiter]
Other
~~~~~
0.1.0 (2025-04-14) 0.1.0 (2025-04-14)
------------------ ------------------

View File

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

View File

@@ -1 +1 @@
0.1.4 0.1.1