Compare commits

2 Commits
0.1.0 ... 0.1.1

Author SHA1 Message Date
fe27248107 release: version 0.1.1 🚀
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 / deploy (push) Has been cancelled
Upload Python Package / Create Release (push) Has been cancelled
2025-04-14 22:38:50 +02:00
cc76a3ef39 fix: correct container repo path, 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
2025-04-14 22:38:20 +02:00
2 changed files with 12 additions and 6 deletions

View File

@@ -51,17 +51,15 @@ jobs:
echo "Version must match!" echo "Version must match!"
exit -1 exit -1
fi fi
- name: Login to Gitea conteiner registry - name: Login to Gitea container registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
username: gitearobot username: gitearobot
password: ${{ secrets.PACKAGE_GITEA_PAT }} password: ${{ secrets.PACKAGE_GITEA_PAT }}
registry: git.disi.dev registry: git.disi.dev
- name: Build and publish - name: Build and publish
env:
GITEA_USERNAME: gitearobot
GITEA_PASSWORD: ${{ secrets.PACKAGE_GITEA_PAT }}
run: | run: |
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/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/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

@@ -4,6 +4,14 @@ Changelog
(unreleased) (unreleased)
------------ ------------
Fix
~~~
- Correct container repo path, refs NOISSUE. [Simon Diesenreiter]
0.1.0 (2025-04-14)
------------------
- Feat: add release workflow refs NOISSUE. [Simon Diesenreiter] - Feat: add release workflow refs NOISSUE. [Simon Diesenreiter]
- Feat: initial working version of service refs NOISSUE. [Simon - Feat: initial working version of service refs NOISSUE. [Simon
Diesenreiter] Diesenreiter]