diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index 4db36ff..9fc6ec7 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -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 \ diff --git a/.github/workflows/deploy-community.yml b/.github/workflows/deploy-community.yml index 5d438d8..5a52cc3 100644 --- a/.github/workflows/deploy-community.yml +++ b/.github/workflows/deploy-community.yml @@ -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: |