From 35094376591d27ed1464029c41d46c996595ac92 Mon Sep 17 00:00:00 2001 From: Jerry Jacobs Date: Fri, 26 Jul 2024 14:03:03 +0200 Subject: [PATCH] For DLL build we also need the ssh private key --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1cef1c8..52a5432 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -94,6 +94,13 @@ jobs: filename: "ssh_private_key" working-directory: "./resources" + - name: Use resources/ssh_private_key from action secrets + uses: mobiledevops/secret-to-file-action@v1 # TODO native in Makefile, can be unsafe... + with: + base64-encoded-secret: ${{ secrets.RESOURCES_SSH_PRIVATE_KEY }} + filename: "ssh_private_key" + working-directory: "./resources" + - run: make dll - name: Store release artifacts