We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a77416 commit 8381eb4Copy full SHA for 8381eb4
1 file changed
.github/actions/install-private-config/action.yml
@@ -26,6 +26,7 @@ runs:
26
set -euo pipefail
27
28
privateConfigCheckoutPath="$RUNNER_TEMP/private-config"
29
+ trap 'rm -rf "$privateConfigCheckoutPath"' EXIT
30
configSourcePath="$privateConfigCheckoutPath/resources/DevLog/Config.xcconfig"
31
googleServiceInfoSourcePath="$privateConfigCheckoutPath/resources/DevLog/GoogleService-Info.plist"
32
configDestinationPath="$GITHUB_WORKSPACE/DevLog/Resource/Config.xcconfig"
@@ -59,7 +60,3 @@ runs:
59
60
61
install -m 600 "$configSourcePath" "$configDestinationPath"
62
install -m 600 "$googleServiceInfoSourcePath" "$googleServiceInfoDestinationPath"
-
63
- - name: Clean private config checkout
64
- shell: bash
65
- run: rm -rf "$RUNNER_TEMP/private-config"
0 commit comments