From 6b357fdcb4ab0da4277f5b04253498f8b4552477 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 15 Feb 2021 16:55:33 -0500 Subject: [PATCH] fix: properly configure git in release environment --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 71a669a25..9eb179404 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,6 +18,8 @@ jobs: PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - uses: ruby/setup-ruby@v1 with: @@ -26,6 +28,11 @@ jobs: - name: install package_cloud run: gem install package_cloud + - name: configure git + run: | + git config --global user.name 'Dokku Bot' + git config --global user.email no-reply@dokku.com + - name: build package run: contrib/release-dokku ${{ github.event.inputs.release_type }}