diff --git a/.github/workflows/sync-to-forgejo.yml b/.github/workflows/sync-to-forgejo.yml new file mode 100644 index 0000000..330f397 --- /dev/null +++ b/.github/workflows/sync-to-forgejo.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 648f43d..285415d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 0f9101d..c97906e 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/newt/CHANGELOG.md b/newt/CHANGELOG.md index 648f43d..7958e6b 100644 --- a/newt/CHANGELOG.md +++ b/newt/CHANGELOG.md @@ -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 diff --git a/newt/Dockerfile b/newt/Dockerfile index 146a8a4..dd40267 100644 --- a/newt/Dockerfile +++ b/newt/Dockerfile @@ -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 && \ diff --git a/newt/config.yaml b/newt/config.yaml index 58e6f3c..b50bce9 100644 --- a/newt/config.yaml +++ b/newt/config.yaml @@ -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"