Git config before deploy

This commit is contained in:
Jesse Hills 2022-02-16 11:25:33 +13:00
parent 30b95de4ce
commit 449db72390
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A
2 changed files with 8 additions and 0 deletions

View File

@ -57,6 +57,10 @@ jobs:
runs-on: ubuntu-latest
needs: [create-release]
steps:
- name: Git config
run: |
git config user.name esphomebot
git config user.email esphome@nabucasa.com
- name: Publish beta release to community-addons repository
run: |
docker run --rm hassioaddons/repository-updater:latest \

View File

@ -16,6 +16,10 @@ jobs:
deploy-community-addons:
runs-on: ubuntu-latest
steps:
- name: Git config
run: |
git config user.name esphomebot
git config user.email esphome@nabucasa.com
- if: ${{ contains(github.event.inputs.version, 'b') || github.event.inputs.beta == 'true' }}
name: Publish beta release to community-addons repository
run: |