diff --git a/.github/workflows/dev-docker-io.yml b/.github/workflows/dev-docker-io.yml index 52ba050..c155d5c 100644 --- a/.github/workflows/dev-docker-io.yml +++ b/.github/workflows/dev-docker-io.yml @@ -16,6 +16,14 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 + - name: Get version tag from env file + uses: c-py/action-dotenv-to-setenv@v2 + with: + env-file: .version + + - name: Echo version + run: echo ${{ env.VERSION }} + - name: Build and Push Docker Image to docker.io uses: mr-smithers-excellent/docker-build-push@v5 with: diff --git a/.version b/.version deleted file mode 100644 index 29b5c4f..0000000 --- a/.version +++ /dev/null @@ -1 +0,0 @@ -VERSION=0.8.3 \ No newline at end of file diff --git a/.version b/.version new file mode 120000 index 0000000..48eaba0 --- /dev/null +++ b/.version @@ -0,0 +1 @@ +internal/web/templates/footer.html \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 5716081..e90d71a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [v0.9.1] +### Added +- Scan host for open ports + +### Changed +- Small fixes + ## [v0.8.3] - 2023-01-03 ### Added - Clear table button (Config page) diff --git a/internal/web/templates/config.html b/internal/web/templates/config.html index f4c10e6..e032c01 100644 --- a/internal/web/templates/config.html +++ b/internal/web/templates/config.html @@ -41,7 +41,13 @@ Ignore IP - + + + diff --git a/internal/web/templates/footer.html b/internal/web/templates/footer.html index 5dd8ca7..7345777 100644 --- a/internal/web/templates/footer.html +++ b/internal/web/templates/footer.html @@ -1,4 +1,9 @@ {{ define "footer"}} +
+
+ VERSION=0.9.1 +
+
{{ end }} \ No newline at end of file