Skip to content

Commit 29a51fe

Browse files
authored
Less debug
1 parent b52bfff commit 29a51fe

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/deploy.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,15 @@ jobs:
2929
- name: stamp it
3030
id: stamp
3131
run: |
32-
if true; then # [[ ${{ github.debug }} -eq 1 ]]; then
32+
if [[ "${{ github.debug }}" -eq 1 ]]; then
3333
set -x
34+
echo "ACTIONS_RUNNER_DEBUG := <<${ACTIONS_RUNNER_DEBUG}>>" >&2
35+
echo "ACTIONS_STEP_DEBUG := <<${ACTIONS_STEP_DEBUG}>>" >&2
3436
fi
35-
echo "ACTIONS_RUNNER_DEBUG := <<${ACTIONS_RUNNER_DEBUG}>>" >&2
36-
echo "ACTIONS_STEP_DEBUG := <<${ACTIONS_STEP_DEBUG}>>" >&2
37-
git config --get-regexp '^user\..*' || true
3837
3938
# this pair is magic: https://github.com/actions/checkout/tree/v4.2.2#push-a-commit-using-the-built-in-token
4039
git config user.name "github-actions[bot]"
4140
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
42-
git config --get-regexp '^user\..*' || true
4341
4442
my_tag=v0.${GITHUB_RUN_ID}.0
4543
git tag $my_tag HEAD

0 commit comments

Comments
 (0)