This is an automated email from the ASF dual-hosted git repository. tobous pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/db-jdo-site.git
commit 0fb69e6ab1c20895d48f8f8f39f144e92d68cb0f Author: Tobias Bouschen <tobias.bousc...@googlemail.com> AuthorDate: Tue Feb 9 13:43:32 2021 +0100 Capitalize short sha env name in deploy actions --- .github/workflows/deploy-site.yml | 4 ++-- .github/workflows/recreate-site-branch.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-site.yml b/.github/workflows/deploy-site.yml index 1e6d0db..8d02f24 100644 --- a/.github/workflows/deploy-site.yml +++ b/.github/workflows/deploy-site.yml @@ -50,7 +50,7 @@ jobs: id: short-sha run: | short_sha=$(git rev-parse --short=10 $GITHUB_SHA) - echo "::set-output name=short_sha::$short_sha" + echo "::set-output name=SHORT_SHA::$short_sha" shell: 'bash' @@ -126,7 +126,7 @@ jobs: echo echo "Committing changes" - git commit -m "Auto-deploy site for commit ${{ steps.short-sha.outputs.short_sha }}" + git commit -m "Auto-deploy site for commit ${{ steps.short-sha.outputs.SHORT_SHA }}" echo echo "Pushing site branch" diff --git a/.github/workflows/recreate-site-branch.yml b/.github/workflows/recreate-site-branch.yml index 092560d..f44a9a6 100644 --- a/.github/workflows/recreate-site-branch.yml +++ b/.github/workflows/recreate-site-branch.yml @@ -39,7 +39,7 @@ jobs: id: short-sha run: | short_sha=$(git rev-parse --short=10 $GITHUB_SHA) - echo "::set-output name=short_sha::$short_sha" + echo "::set-output name=SHORT_SHA::$short_sha" shell: 'bash' @@ -84,7 +84,7 @@ jobs: echo echo "Committing changes" - git commit -m "Auto-deploy site for commit ${{ steps.short-sha.outputs.short_sha }}" + git commit -m "Auto-deploy site for commit ${{ steps.short-sha.outputs.SHORT_SHA }}" echo echo "Pushing site branch"