Skip to content

Commit

Permalink
Release v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fhemberger committed Aug 2, 2021
1 parent 24ba7c6 commit b813041
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
on:
create:
push:
tags:
- '*'

Expand All @@ -17,6 +17,9 @@ jobs:
- name: Get the tag name
run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV

- name: Get the tag name
run: echo "SHA_SHORT=${GITHUB_SHA::7}" >> $GITHUB_ENV

- name: Login to DockerHub
uses: docker/login-action@v1
with:
Expand All @@ -37,7 +40,7 @@ jobs:
tags: |
${{ github.repository }}:latest
${{ github.repository }}:${{ env.TAG }}
${{ github.repository }}:${GITHUB_SHA::7}
${{ github.repository }}:${{ env.SHA_SHORT }}
ghcr.io/${{ github.repository }}:latest
ghcr.io/${{ github.repository }}:${{ env.TAG }}
ghcr.io/user/${{ github.repository }}:${GITHUB_SHA::7}
ghcr.io/user/${{ github.repository }}:${{ env.SHA_SHORT }}
2 changes: 1 addition & 1 deletion mqtt_exporter.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import sys
from yamlreader import yaml_load

VERSION = '1.2.2'
VERSION = '1.2.3'


def _read_config(config_path):
Expand Down

0 comments on commit b813041

Please sign in to comment.