Compare commits
6 Commits
8
.github/workflows/bump-version.yml
vendored
8
.github/workflows/bump-version.yml
vendored
@@ -18,8 +18,8 @@ jobs:
|
||||
- run: pip install -r script/requirements.txt
|
||||
- run: script/bump-version.py ${{ github.event.inputs.version }}
|
||||
- run: |
|
||||
git config user.name github-actions
|
||||
git config user.email github-actions@github.com
|
||||
git config user.name esphomebot
|
||||
git config user.email contact@esphome.io
|
||||
git add .
|
||||
git commit -m "Bump version to v${{ github.event.inputs.version }}"
|
||||
git push
|
||||
@@ -52,7 +52,7 @@ jobs:
|
||||
- if: ${{ contains(github.event.inputs.version, 'b') }}
|
||||
name: Publish beta release to community-addons repository
|
||||
run: |
|
||||
docker run -it --rm hassioaddons/repository-updater:latest \
|
||||
docker run --rm hassioaddons/repository-updater:latest \
|
||||
--repository hassio-addons/repository-beta \
|
||||
--addon esphome \
|
||||
--token "${TOKEN}"
|
||||
@@ -61,7 +61,7 @@ jobs:
|
||||
- if: ${{ !contains(github.event.inputs.version, 'b') }}
|
||||
name: Publish stable release to community-addons repository
|
||||
run: |
|
||||
docker run -it --rm hassioaddons/repository-updater:latest \
|
||||
docker run --rm hassioaddons/repository-updater:latest \
|
||||
--repository hassio-addons/repository \
|
||||
--addon esphome \
|
||||
--token "${TOKEN}"
|
||||
|
||||
@@ -42,6 +42,6 @@
|
||||
"stage": "experimental",
|
||||
"startup": "application",
|
||||
"url": "https://beta.esphome.io/",
|
||||
"version": "1.15.0b2",
|
||||
"version": "1.15.0b4",
|
||||
"webui": "http://[HOST]:[PORT:6052]"
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
{
|
||||
"args": {},
|
||||
"build_from": {
|
||||
"aarch64": "esphome/esphome-hassio-base-aarch64:2.3.4",
|
||||
"amd64": "esphome/esphome-hassio-base-amd64:2.3.4",
|
||||
"armv7": "esphome/esphome-hassio-base-armv7:2.3.4"
|
||||
"aarch64": "esphome/esphome-hassio-base-aarch64:2.5.0",
|
||||
"amd64": "esphome/esphome-hassio-base-amd64:2.5.0",
|
||||
"armv7": "esphome/esphome-hassio-base-armv7:2.5.0"
|
||||
},
|
||||
"squash": false
|
||||
}
|
||||
@@ -38,7 +38,7 @@ base: &base
|
||||
streamer_mode: bool?
|
||||
relative_url: str?
|
||||
status_use_ping: bool?
|
||||
base_image: esphome/esphome-hassio-base-{arch}:2.3.4
|
||||
base_image: esphome/esphome-hassio-base-{arch}:2.5.0
|
||||
|
||||
esphome-dev:
|
||||
<<: *base
|
||||
@@ -56,7 +56,7 @@ esphome-beta:
|
||||
<<: *base
|
||||
directory: esphome-beta
|
||||
name: ESPHome (beta)
|
||||
version: '1.15.0b2' # BETA
|
||||
version: '1.15.0b4' # BETA
|
||||
slug: esphome-beta
|
||||
description: "Beta version of ESPHome Hass.io add-on."
|
||||
url: https://beta.esphome.io/
|
||||
|
||||
Reference in New Issue
Block a user