From 9999ea32e343abd9ef0876945ddffb0cc7d8b986 Mon Sep 17 00:00:00 2001 From: Mike Hamer Date: Fri, 26 Feb 2021 14:05:54 -0500 Subject: [PATCH] Split set user into its own step --- .github/workflows/deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 10181e6..cd9de68 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,9 +11,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + - name: Set GitHub User run: | - git config user.name github-actions - git config user.email 41898282+github-actions[bot]@users.noreply.github.com + git config user.name github-actions + git config user.email 41898282+github-actions[bot]@users.noreply.github.com - name: Set Release Version run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV - name: Setup Node