From 5988ae32d346e669a02abdc0c8c6e8c5a777493b Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 10 Feb 2022 17:00:07 -0300 Subject: [PATCH] Update deploy.yml and deploy.sh --- .github/workflows/deploy.yml | 10 +++++----- bin/{deploy => deploy.sh} | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) rename bin/{deploy => deploy.sh} (95%) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0fc24dc..e613608 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,16 +36,16 @@ jobs: - name: Setup deploy options id: setup run: | - git config --global user.name "GitHub Action" - git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - if [[ ${GITHUB_REF} = refs/pull/*/merge ]]; then # pull request + git config --local user.name "$(git log --format=%an | head -n 1)" + git config --local user.email "$(git log --format=%ae | head -n 1)" + if [[ ${GITHUB_REF} = refs/pull/*/merge ]]; then echo "::set-output name=SRC_BRANCH::${GITHUB_HEAD_REF}" echo "::set-output name=NO_PUSH::--no-push" - elif [[ ${GITHUB_REF} = refs/heads/* ]]; then # branch, e.g. master, source etc + elif [[ ${GITHUB_REF} = refs/heads/* ]]; then echo "::set-output name=SRC_BRANCH::${GITHUB_REF#refs/heads/}" fi echo "::set-output name=DEPLOY_BRANCH::gh-pages" - name: Deploy website - run: yes | bin/deploy --verbose ${{ steps.setup.outputs.NO_PUSH }} + run: yes | bin/deploy.sh --verbose ${{ steps.setup.outputs.NO_PUSH }} --src ${{ steps.setup.outputs.SRC_BRANCH }} --deploy ${{ steps.setup.outputs.DEPLOY_BRANCH }} diff --git a/bin/deploy b/bin/deploy.sh similarity index 95% rename from bin/deploy rename to bin/deploy.sh index 070e2f7..e62da24 100755 --- a/bin/deploy +++ b/bin/deploy.sh @@ -7,7 +7,7 @@ SRC_BRANCH="master" DEPLOY_BRANCH="gh-pages" -USAGE_MSG="usage: deploy [-h|--help] [-u|--user] [-s|--src SRC_BRANCH] [-d|--deploy DEPLOY_BRANCH] [--verbose] [--no-push]" +USAGE_MSG="usage: deploy.sh [-h|--help] [-u|--user] [-s|--src SRC_BRANCH] [-d|--deploy DEPLOY_BRANCH] [--verbose] [--no-push]" while [[ $# > 0 ]]; do key="$1"