From c3748533db73a4f34273cb288f5376a3adee2588 Mon Sep 17 00:00:00 2001
From: Joe Blau <im@joeblau.com>
Date: Sun, 12 Jul 2020 14:47:09 -0700
Subject: [PATCH] Does this work

---
 .github/scripts/signing.sh | 2 ++
 .github/workflows/test.yml | 1 +
 2 files changed, 3 insertions(+)

diff --git a/.github/scripts/signing.sh b/.github/scripts/signing.sh
index 9bb8042..7674164 100755
--- a/.github/scripts/signing.sh
+++ b/.github/scripts/signing.sh
@@ -1,5 +1,7 @@
 #!/bin/bash
 
+echo $DOES_THIS_WORK
+
 # Import certificate and private key
 echo $SIGNING_DATA | base64 -d -o Signing.p12
 security create-keychain -p ci ci.keychain
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 4e5d860..8446cf9 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -9,6 +9,7 @@ jobs:
     - uses: actions/checkout@v1
     - name: Setup Signing
       env: 
+        DOES_THIS_WORK: ${{ secrets.JOE_TEST }}
         SIGNING_DATA: ${{ secrets.SIGNING_DATA }}
         SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
         HOST_PROFILE_DATA: ${{ secrets.HOST_PROFILE_DATA }}