Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.2.1 #68

Merged
merged 4 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions babybuddy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
# Changelog
# CHANGELOG

## 2.2.1

### :arrow_up: Updated
- Baby Buddy to 2.2.1 [release notes](https://github.com/babybuddy/babybuddy/releases/tag/v2.2.1)
- HA HAddon base to 15.0.6

## 2.2.0

### Added
### :new: Added
- this nifty changelog

### Updated
### :arrow_up: Updated
- Baby Buddy to 2.2.0 [release notes](https://github.com/babybuddy/babybuddy/releases/tag/v2.2.0)
- HA Addon base to 15.0.5 [release notes](https://github.com/hassio-addons/addon-base/releases/tag/v15.0.5)
4 changes: 2 additions & 2 deletions babybuddy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BUILD_FROM=ghcr.io/hassio-addons/base:15.0.5
ARG BUILD_FROM=ghcr.io/hassio-addons/base:15.0.6
# hadolint ignore=DL3006
FROM ${BUILD_FROM}

Expand All @@ -11,7 +11,7 @@ RUN \
echo "**** downloading babybuddy ****" && \
curl -o \
/tmp/babybuddy.tar.gz -L \
"https://github.com/babybuddy/babybuddy/archive/refs/tags/v2.2.0.tar.gz" && \
"https://github.com/babybuddy/babybuddy/archive/refs/tags/v2.2.1.tar.gz" && \
mkdir -p /app/babybuddy && \
tar xf \
/tmp/babybuddy.tar.gz -C \
Expand Down
10 changes: 5 additions & 5 deletions babybuddy/build.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
build_from:
aarch64: ghcr.io/hassio-addons/base:15.0.5
amd64: ghcr.io/hassio-addons/base:15.0.5
armhf: ghcr.io/hassio-addons/base:15.0.5
armv7: ghcr.io/hassio-addons/base:15.0.5
i386: ghcr.io/hassio-addons/base:15.0.5
aarch64: ghcr.io/hassio-addons/base:15.0.6
amd64: ghcr.io/hassio-addons/base:15.0.6
armhf: ghcr.io/hassio-addons/base:15.0.6
armv7: ghcr.io/hassio-addons/base:15.0.6
i386: ghcr.io/hassio-addons/base:15.0.6
2 changes: 1 addition & 1 deletion babybuddy/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Baby Buddy
version: 2.2.0.1
version: 2.2.1
homeassistant: 2023.6.2
slug: baby_buddy
image: "ottpeterr/image-{arch}-babybuddy"
Expand Down
11 changes: 5 additions & 6 deletions how_to_build.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ when updating versions, make sure to bump the build.yaml as well

Then for a new release:

- have PR branch ready
- make new release in github with new version
- point at PR branch to build+publish
- wait for the action to complete
- merge branch into main
- this causes end users to see the update in HA
1. have PR branch ready
2. Make sure it passes build test (GitHub action)
3. Make a new tag in GitHub, this will run an action to build then publish
4. Wait for action to complete
5. Merge PR branch into main (home assistant will pick up changes when they hit main)
Loading