Skip to content

Commit

Permalink
metabase-0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderdw committed Mar 18, 2024
1 parent 8bc5eee commit 313cb66
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/metabase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
branches:
- 'master'
- 'develop'
- 'metabase-0.6.0'
tags:
- 'v*.*.*'
paths:
Expand Down
4 changes: 4 additions & 0 deletions metabase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.6.0

- Update to Metabase 0.49.0

## 0.5.0

- Update to Metabase 0.43.0
Expand Down
2 changes: 1 addition & 1 deletion metabase/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ARG HA_RELEASE
RUN echo "I am running on $BUILDPLATFORM, building for $TARGETPLATFORM" > /log
RUN echo "build - Working on the following addon release: $HA_RELEASE"
COPY config.yaml /home/ha_addon_version.yaml
ADD https://downloads.metabase.com/v0.43.0/metabase.jar /home
ADD https://downloads.metabase.com/v0.49.0/metabase.jar /home
COPY run.sh /
RUN chmod a+x /run.sh

Expand Down
4 changes: 2 additions & 2 deletions metabase/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Meet the easy, open source way for everyone to ask questions and learn from data
[aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg?style=flat-square
[amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg?style=flat-square

[metabase-shield]: https://img.shields.io/badge/Metabase%20Version-%200.43.0-purple.svg?style=flat-square
[addon-shield]: https://img.shields.io/badge/Addon%20Version-%200.5.0-purple.svg?style=flat-square
[metabase-shield]: https://img.shields.io/badge/Metabase%20Version-%200.49.0-purple.svg?style=flat-square
[addon-shield]: https://img.shields.io/badge/Addon%20Version-%200.6.0-purple.svg?style=flat-square
[forum-shield]: https://img.shields.io/badge/community-forum-brightgreen.svg?style=for-the-badge
[forum]: https://community.home-assistant.io/t/metabase-add-on-for-home-assistant/286413
## Configure the repository
Expand Down
2 changes: 1 addition & 1 deletion metabase/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-config
name: Metabase
version: "0.5.0"
version: "0.6.0"
slug: metabase
description: Meet the easy, open source way for everyone to ask questions and learn from data.
url: "https://github.com/sanderdw/hassio-addons/blob/master/metabase/README.md"
Expand Down
4 changes: 2 additions & 2 deletions metabase/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ function _info() { printf "\\r[ \\033[00;34mINFO\\033[0m ] %s\\n" "$@"; }
function _hass {
_info "Welcome to the Home Assistant Add-on: Metabase by Sander de Wildt."
_info "Explore your Home Assistant data at ease."
_info "Home Assistant Add-on release: 0.5.0"
CHECK_UPDATE=$(curl -s "https://api-check.duckdns.org/metabase-addon/0.5.0")
_info "Home Assistant Add-on release: 0.6.0"
CHECK_UPDATE=$(curl -s "https://api-check.duckdns.org/metabase-addon/0.6.0")
if [[ "$CHECK_UPDATE" == *"response_string"* ]]; then
OUTPUT=$(echo $CHECK_UPDATE | jq --raw-output .response_string)
_info "$OUTPUT"
Expand Down

0 comments on commit 313cb66

Please sign in to comment.