forked from evcc-io/evcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automate Hassio releases (evcc-io#4461)
- Loading branch information
Showing
3 changed files
with
43 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,3 +93,30 @@ jobs: | |
env: | ||
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }} | ||
run: make apt-nightly | ||
|
||
hassio: | ||
name: Hassio Addon | ||
needs: | ||
- docker | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
with: | ||
repository: evcc-io/hassio-addon | ||
token: ${{ secrets.GH_TOKEN }} | ||
path: ./hassio | ||
|
||
- name: Update version | ||
run: | | ||
sed -i -e s#.*version.*#' "version": "nightly-'$(date +'%Y%m%d%H%M%S')'",'# ./hassio/evcc-nightly/config.json | ||
- name: Push | ||
run: | | ||
cd ./hassio | ||
git add . | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git commit -am "config.json updated from Project evcc release" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,17 +102,23 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
with: | ||
repository: evcc-io/hassio-addon | ||
token: ${{ secrets.GH_TOKEN }} | ||
path: ./hassio | ||
|
||
- name: Update version | ||
run: | | ||
sed -i -e s#0.0.0#$(echo ${{ env.GITHUB_REF }} | sed -e s#refs/tags/##)# packaging/hassio/config.json | ||
export RELEASE_VERSION=$(echo ${{ github.ref }} | sed -e s#refs/tags/v##) | ||
sed -i -e s#.*version.*#' "version": "'$RELEASE_VERSION'",'# ./hassio/evcc/config.json | ||
- name: Copy config to hassio-addon | ||
uses: andstor/copycat-action@v3 | ||
with: | ||
personal_token: ${{ secrets.GH_TOKEN }} | ||
src_path: packaging/hassio/config.json | ||
dst_path: /evcc/config.json | ||
dst_owner: evcc-io | ||
dst_repo_name: hassio-addon | ||
- name: Push | ||
run: | | ||
cd ./hassio | ||
git add . | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git commit -am "Mirror evcc release" | ||
git push |
This file was deleted.
Oops, something went wrong.