Skip to content

Commit 5b9987e

Browse files
committed
Expose AUTH_KEY_PATH as env var
1 parent eca05ea commit 5b9987e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/firebase-app-distribution.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ jobs:
6565
rm -f $AUTH_KEY_PATH
6666
echo -n "$XCODE_AUTHENTICATION_KEY_BASE64" | base64 --decode -o $AUTH_KEY_PATH
6767
68-
echo "AUTH_KEY_PATH=$AUTH_KEY_PATH" >> $GITHUB_ENV
68+
# Make it available for the current shell
69+
export AUTH_KEY_PATH=$AUTH_KEY_PATH
6970
7071
chmod +x ./Scripts/publish-demo-app.sh
71-
./Scripts/publish-demo-app.sh "firebase"
72+
./Scripts/publish-demo-app.sh "firebsae"

.github/workflows/publish-demo-app.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ jobs:
127127
rm -f $AUTH_KEY_PATH
128128
echo -n "$XCODE_AUTHENTICATION_KEY_BASE64" | base64 --decode -o $AUTH_KEY_PATH
129129
130-
echo "AUTH_KEY_PATH=$AUTH_KEY_PATH" >> $GITHUB_ENV
130+
# Make it available for the current shell
131+
export AUTH_KEY_PATH=$AUTH_KEY_PATH
131132
132133
chmod +x ./Scripts/publish-demo-app.sh
133134
./Scripts/publish-demo-app.sh

0 commit comments

Comments
 (0)