Skip to content

Commit f15ca88

Browse files
committed
Merge branch '3.16.x'
2 parents a2b5730 + e8964e5 commit f15ca88

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

.github/workflows/build-release-latest.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,12 @@ jobs:
383383
pattern: 'fedora*'
384384
path: artifact
385385
merge-multiple: true
386+
# docker login is needed for pushing the build image
387+
- uses: docker/login-action@v3
388+
with:
389+
registry: ghcr.io
390+
username: ${{ github.actor }}
391+
password: ${{ secrets.GITHUB_TOKEN }}
386392
# organize SSH deploy key for nagstamon-repo
387393
- run: mkdir ~/.ssh
388394
- run: echo "${{ secrets.NAGSTAMON_REPO_KEY_WEB }}" > ~/.ssh/id_ed25519
@@ -391,6 +397,10 @@ jobs:
391397
- run: git clone [email protected]:HenriWahl/nagstamon-jekyll.git
392398
- run: rm -rf ${{ env.repo_dir }}/${{ env.family }}/${{ env.release }}
393399
- run: mkdir -p ${{ env.repo_dir }}/${{ env.family }}/${{ env.release }}
400+
# if image defined by variable cr_image_version is not pullable aka does not exist it will be created and pushed
401+
# only needed for fedora
402+
- run: docker pull ${{ env.cr_image }}-${{ env.family }}-${{ env.cr_image_latest }}:${{ env.cr_image_version }} || /usr/bin/docker build -t ${{ env.cr_image }}-${{ env.family }}-${{ env.cr_image_latest }}:${{ env.cr_image_version }} -f build/docker/Dockerfile-${{ github.job }} .
403+
- run: docker push ${{ env.cr_image }}-${{ env.family }}-${{ env.cr_image_latest }}:${{ env.cr_image_version }}
394404
# copy *.rpm files into nagstamon-jekyll and create repodata
395405
- run: |
396406
version=${{ env.release }} && \

.github/workflows/build-release-stable.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,13 +379,22 @@ jobs:
379379
pattern: 'fedora*'
380380
path: artifact
381381
merge-multiple: true
382+
# docker login is needed for pushing the build image
383+
- uses: docker/login-action@v3
384+
with:
385+
registry: ghcr.io
386+
username: ${{ github.actor }}
387+
password: ${{ secrets.GITHUB_TOKEN }}
382388
# organize SSH deploy key for nagstamon-repo
383389
- run: mkdir ~/.ssh
384390
- run: echo "${{ secrets.NAGSTAMON_REPO_KEY_WEB }}" > ~/.ssh/id_ed25519
385391
- run: chmod -R go-rwx ~/.ssh
386392
# get and prepare nagstamon-jekyll
387393
- run: git clone [email protected]:HenriWahl/nagstamon-jekyll.git
388394
- run: rm -rf ${{ env.repo_dir }}/${{ env.family }}/??
395+
# if image defined by variable cr_image_version is not pullable aka does not exist it will be created and pushed
396+
- run: docker pull ${{ env.cr_image }}-${{ env.family }}-${{ env.cr_image_latest }}:${{ env.cr_image_version }} || /usr/bin/docker build -t ${{ env.cr_image }}-${{ env.family }}-${{ env.cr_image_latest }}:${{ env.cr_image_version }} -f build/docker/Dockerfile-${{ github.job }} .
397+
- run: docker push ${{ env.cr_image }}-${{ env.family }}-${{ env.cr_image_latest }}:${{ env.cr_image_version }}
389398
# copy *.rpm files into nagstamon-jekyll and create repodata
390399
- run: |
391400
for noarch_rpm in artifact/*${{ env.family }}*.noarch.rpm; \

Nagstamon/Config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class AppInfo(object):
131131
contains app information previously located in GUI.py
132132
"""
133133
NAME = 'Nagstamon'
134-
VERSION = '3.17-20241023'
134+
VERSION = '3.16.2'
135135
WEBSITE = 'https://nagstamon.de'
136136
COPYRIGHT = '©2008-2024 Henri Wahl et al.'
137137
COMMENTS = 'Nagios status monitor for your desktop'

build/debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nagstamon (3.17-20241023) unstable; urgency=low
1+
nagstamon (3.16.2) unstable; urgency=low
22
* New upstream
33
- fix sound problem
44
- fix IncingaDBWeb

0 commit comments

Comments
 (0)