From 6a31089481ff5400589b488f3412327f9a19e840 Mon Sep 17 00:00:00 2001 From: JdM Date: Fri, 19 Jul 2024 18:48:56 +0200 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..da45a57 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,6 @@ +- name: Step 1 - Echo out a GitHub Actions Secret to the logs + run: | + echo "The GitHub Action Secret will be masked: " + echo ${{ secrets.KEYSTORE }} + echo "Trick to echo GitHub Actions Secret: " + echo ${{secrets.SIGNING_KEY_PASSWORD}} | sed 's/./& /g'