diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit 01cd0e6f6fd13af9fe383a2be1f241aa78d932c8
parent 785d5b6b2843dcb1238c6e96f13ac754b935f4d4
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sat, 24 Jul 2021 16:47:25 +0200

Update man.yml
Diffstat:
M.github/workflows/man.yml | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/man.yml b/.github/workflows/man.yml @@ -6,7 +6,7 @@ on: pull_request: branches: [ master ] env: - SSH_AUTH_SOCK: "${RUNNER_TEMP}/ssh-agent.sock" + SSH_AUTH_SOCK: "${{ env.RUNNER_TEMP }}/ssh-agent.sock" jobs: man: @@ -21,9 +21,9 @@ jobs: - name: Add ssh key # https://www.webfactory.de/blog/use-ssh-key-for-private-repositories-in-github-actions run: | - ssh-agent -a $SSH_AUTH_SOCK > /dev/null - ls -l "${RUNNER_TEMP}" - ls -l "${SSH_AUTH_SOCK}" + ssh-agent -a ${{ env.SSH_AUTH_SOCK }} > /dev/null + ls -l ${{ env.RUNNER_TEMP }} + ls -l ${{ env.SSH_AUTH_SOCK }} ssh-add - <<< "${{ secrets.SSH_B64 }}" - name: Send html to website