1
0
Fork 0
mirror of https://github.com/librenms/docker.git synced 2026-07-20 01:57:54 +00:00

Update CHANGELOG

This commit is contained in:
CrazyMax 2020-06-01 20:27:24 +02:00
parent fd617cd7a2
commit 6a6252d894
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
2 changed files with 6 additions and 7 deletions

View file

@ -2,8 +2,6 @@ name: build
on:
schedule:
- cron: '0 10 * * *' # everyday at 10am
push:
branches: master
tags: '*'
@ -38,12 +36,9 @@ jobs:
TAG=${GITHUB_REF#refs/tags/}
VERSION=${TAG%-*}
fi
if [ "${{ github.event_name }}" = "schedule" ]; then
VERSION=nightly
fi
TAGS="--tag ${DOCKER_IMAGE}:${VERSION}"
if [ "$VERSION" != "edge" ] && [ "$VERSION" != "nightly" ]; then
if [ "$VERSION" != "edge" ]; then
TAGS="$TAGS --tag ${DOCKER_IMAGE}:latest"
fi

View file

@ -1,11 +1,15 @@
# Changelog
## 1.64.1-RC1 (2020/06/01)
* LibreNMS 1.64.1
## 1.64-RC1 (2020/06/01)
* LibreNMS 1.64
* Python 2 removed (librenms/librenms#11531)
* Multi-platform image
* Publish edge and nightly images
* Publish edge image
## 1.63-RC7 (2020/05/28)