File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ jobs:
17
17
- name : Extract Robolectric version
18
18
id : robolectric_version
19
19
run : |
20
- authorAssociation=${{ github.event.issue.author_association }}
20
+ authorAssociation=" ${{ github.event.issue.author_association }}"
21
21
22
22
if [[ "$authorAssociation" == "COLLABORATOR" || "$authorAssociation" == "MEMBER" || "$authorAssociation" == "OWNER" ]]; then
23
- issueTitle=${{ github.event.issue.title }}
23
+ issueTitle=" ${{ github.event.issue.title }}"
24
24
25
25
if [[ "$issueTitle" =~ ^Publish\ javadoc\ for\ (([0-9]+\.[0-9]+)(\.[0-9]+)?)$ ]]; then
26
- robolectricMinorVersion=${BASH_REMATCH[2]}
27
- robolectricPatchVersion=${BASH_REMATCH[1]}
26
+ robolectricMinorVersion=" ${BASH_REMATCH[2]}"
27
+ robolectricPatchVersion=" ${BASH_REMATCH[1]}"
28
28
29
29
echo "minorVersion=$robolectricMinorVersion" > $GITHUB_OUTPUT
30
30
echo "patchVersion=$robolectricPatchVersion" >> $GITHUB_OUTPUT
62
62
if : ${{ steps.robolectric_version.outputs.minorVersion }}
63
63
run : |
64
64
cd robolectric.github.io
65
- targetFolder=docs/javadoc/${{ steps.robolectric_version.outputs.minorVersion }}
65
+ targetFolder=" docs/javadoc/${{ steps.robolectric_version.outputs.minorVersion }}"
66
66
if [ -e $targetFolder ]; then
67
67
rm -r $targetFolder
68
68
fi
You can’t perform that action at this time.
0 commit comments