From 449db7239026b51f84fd9e841af0c36c6f5ec617 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Wed, 16 Feb 2022 11:25:33 +1300 Subject: [PATCH] Git config before deploy --- .github/workflows/bump-version.yml | 4 ++++ .github/workflows/deploy-community.yml | 4 ++++ 2 files changed, 8 insertions(+) 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: |