From 770d4e4193f3776a430f3ce38b357cfe9570c5c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Tue, 8 Oct 2024 20:11:06 +0200 Subject: [PATCH] Change workflow --- .github/workflows/test-sign.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-sign.yaml b/.github/workflows/test-sign.yaml index 210b733..ef24937 100644 --- a/.github/workflows/test-sign.yaml +++ b/.github/workflows/test-sign.yaml @@ -20,7 +20,7 @@ jobs: - name: configure git env: SSH_PRIVKEY: ${ secrets.BOT_SSH_PRIVKEY } - SSH_PUBKEY: ${ secrets.BOT_SSH_PUBKEY} + SSH_PUBKEY: ${ secrets.BOT_SSH_PUBKEY } run: | echo "$SSH_PRIVKEY" > /tmp/id_ed25519 echo "$SSH_PUBKEY" > /tmp/id_ed25519.pub @@ -30,6 +30,9 @@ jobs: git config --global user.signingKey = "~/.ssh/id_ed25519.pub" git config --global gpg.format ssh git config --global commit.gpgsign true + - name: cat config + run: | + cat ~/.gitconfig - name: add something to a file run: echo $RANDOM >> random.txt - name: push