From 23503e661722dab5dff0c4cf6e30cab96276d3a9 Mon Sep 17 00:00:00 2001 From: Wolfgang Date: Sun, 10 Dec 2023 11:31:41 +0100 Subject: [PATCH] Add missing matrix for debian 12 --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67c89fd..8c6e776 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -276,6 +276,15 @@ jobs: name: "private-ssh-key-3" path: "id_vpn" + - name: Archive the private SSH key (Matrix 4) + if: ${{ matrix.index == '4' }} + uses: actions/upload-artifact@v3 + with: + name: "private-ssh-key-4" + path: "id_vpn" + + + @@ -339,6 +348,15 @@ jobs: name: "private-ssh-key-3" path: /home/runner/.ssh + - name: Get the private SSH key artifact (Matrix 4) + if: matrix.index == '4' + uses: actions/download-artifact@v3 + with: + name: "private-ssh-key-4" + path: /home/runner/.ssh + + + - name: Set the correct permissions for the SSH key run: | chmod 700 $HOME/.ssh