Fix GitHub Actions permissions for add-on publishing
- Add packages:write permission to build job - Add contents:write permission to update-repository job - Bump version to 1.0.1
This commit is contained in:
@@ -26,6 +26,9 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
name: Build Add-on
|
name: Build Add-on
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
packages: write
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
arch: [aarch64, amd64, armv7]
|
arch: [aarch64, amd64, armv7]
|
||||||
@@ -108,6 +111,8 @@ jobs:
|
|||||||
needs: build
|
needs: build
|
||||||
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
|
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|||||||
@@ -5,6 +5,13 @@ All notable changes to this Home Assistant add-on will be documented in this fil
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [1.0.1] - 2025-11-17
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- GitHub Actions permissions for publishing Docker images to ghcr.io
|
||||||
|
- Added `packages: write` permission to build job
|
||||||
|
- Added `contents: write` permission to update-repository job
|
||||||
|
|
||||||
## [1.0.0] - 2025-01-15
|
## [1.0.0] - 2025-01-15
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: Strix - Camera Stream Discovery
|
name: Strix - Camera Stream Discovery
|
||||||
version: "1.0.0"
|
version: "1.0.1"
|
||||||
slug: strix
|
slug: strix
|
||||||
description: Smart IP camera stream discovery system with ONVIF support and comprehensive camera database
|
description: Smart IP camera stream discovery system with ONVIF support and comprehensive camera database
|
||||||
url: https://github.com/eduard256/Strix
|
url: https://github.com/eduard256/Strix
|
||||||
|
|||||||
Reference in New Issue
Block a user