Compare commits

..

10 commits

Author SHA1 Message Date
Jørgen Ferdinand
f15b7be65b
Update sync-to-forgejo.yml
Some checks are pending
Sync to Forgejo / mirror (push) Waiting to run
2025-06-18 19:57:50 +02:00
Jørgen Ferdinand
1e52772a49
Create sync-to-forgejo.yml 2025-06-18 19:56:43 +02:00
Jørgen Ferdinand
89109c7bc5
Update CHANGELOG.md 2025-06-09 00:02:54 +02:00
Jørgen Ferdinand
c4fbd3c995
Update CHANGELOG.md 2025-06-08 23:57:57 +02:00
Jørgen Ferdinand
f1bb2c7e40
Update CHANGELOG.md 2025-06-08 23:57:32 +02:00
Jørgen Ferdinand
54402547ab
Update config.yaml 2025-06-08 23:56:44 +02:00
Jørgen Ferdinand
f6b89a8255
Updated newt to 1.2.1 2025-06-08 23:56:17 +02:00
Jørgen Ferdinand
0d2dcd2de2
Update README.md 2025-05-21 18:30:34 +02:00
Jørgen Ferdinand
81661915e8
Update README.md 2025-05-21 18:30:14 +02:00
Jørgen Ferdinand
db892acc83
Update README.md 2025-05-21 18:30:05 +02:00
6 changed files with 40 additions and 6 deletions

24
.github/workflows/sync-to-forgejo.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: Sync to Forgejo
on:
push:
branches:
- main
jobs:
mirror:
runs-on: ubuntu-latest
steps:
- name: Checkout GitHub repo
uses: actions/checkout@v3
with:
fetch-depth: 0 # Henter hele repoet, ikke bare siste commit
- name: Push to Forgejo
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
git remote add forgejo https://Ferdinand99:${{ secrets.FORGEJO_TOKEN }}@git.opland.net/Ferdinand99/home-assistant-newt-addon.git
git push forgejo main

View file

@ -1,5 +1,8 @@
# Changelog
## 🔹 Version 1.3.4 - (2025-06-08)
- Updated newt version to 1.2.1
## 🔹 Version 1.3.3 - (2025-05-21)
- First automated changelog post to Discord!
- Version Bump

View file

@ -5,6 +5,7 @@
[![GitHub Repo stars](https://img.shields.io/github/stars/Ferdinand99/home-assistant-newt-addon?style=for-the-badge)](https://github.com/Ferdinand99/home-assistant-newt-addon/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/Ferdinand99/home-assistant-newt-addon?style=for-the-badge)](https://github.com/Ferdinand99/home-assistant-newt-addon/network/members)
## ⚠️ Issue tracking is moved to discord
---
## 📌 About this Add-on

View file

@ -1,5 +1,11 @@
# Changelog
## 🔹 Version 1.3.4 - (2025-06-08)
- Updated newt version to 1.2.1
## 🔹 Version 1.3.4 - (2025-06-08)
- Updated newt version to 1.2.1
## 🔹 Version 1.3.3 - (2025-05-21)
- First automated changelog post to Discord!
- Version Bump

View file

@ -7,15 +7,15 @@ RUN apk add --no-cache bash curl jq
# Detect system architecture and download the correct Newt binary
RUN ARCH=$(uname -m) && \
if [ "$ARCH" = "x86_64" ]; then \
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.3/newt_linux_amd64; \
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.2.1/newt_linux_amd64; \
elif [ "$ARCH" = "aarch64" ]; then \
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.3/newt_linux_arm64; \
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.2.1/newt_linux_arm64; \
elif [ "$ARCH" = "armv7l" ]; then \
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.3/newt_linux_arm32; \
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.2.1/newt_linux_arm32; \
elif [ "$ARCH" = "armv6l" ]; then \
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.3/newt_linux_arm32v6; \
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.2.1/newt_linux_arm32v6; \
elif [ "$ARCH" = "riscv64" ]; then \
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.1.3/newt_linux_riscv64; \
curl -fsSL -o /usr/bin/newt https://github.com/fosrl/newt/releases/download/1.2.1/newt_linux_riscv64; \
else \
echo "❌ ERROR: Unsupported architecture: $ARCH"; exit 1; \
fi && \

View file

@ -1,5 +1,5 @@
name: "Newt Add-on"
version: "1.3.3"
version: "1.3.4"
slug: "newt"
description: "Runs Newt inside Home Assistant OS"
icon: "icon.png"