Skip to content

Commit

Permalink
chore: delete log in config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kosenda committed Apr 1, 2024
1 parent 6a1eb67 commit 9a37b3c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ commands:
is_skipping_vrt=true
fi
fi
echo "is_skipping_vrt: $is_skipping_vrt"
echo "export IS_SKIPPING_VRT=$is_skipping_vrt" >> $BASH_ENV
get_screenshots:
Expand All @@ -43,7 +42,6 @@ commands:
command: |
pr=$(echo https://api.github.com/repos/${CIRCLE_PULL_REQUEST:19} | sed "s/\/pull\//\/pulls\//")
base=$(curl -s -H "Authorization: token ${GITHUB_ACCESS_TOKEN}" $pr | jq '.base.ref')
echo "base: $base"
echo "export BASE_BRANCH_NAME=${base}" >> $BASH_ENV
- run:
name: Save IS_EXIST_SCREENSHOTS to env
Expand All @@ -52,7 +50,6 @@ commands:
if [ $IS_SKIPPING_VRT = "false" ]; then
is_exist=$(echo -n "$(git fetch origin screenshots_$BASE_BRANCH_NAME && echo true || echo false)")
fi
echo "is_exist: $is_exist"
echo "export IS_EXIST_SCREENSHOTS=${is_exist}" >> $BASH_ENV
- run:
name: Checkout screenshots branch
Expand All @@ -67,7 +64,6 @@ commands:
if [ $IS_EXIST_SCREENSHOTS = "false" ]; then
echo "no-op" > timestamp
fi
echo "timestamp: $(cat timestamp)"
echo "export SCREENSHOTS_TIMESTAMP=$(echo -n $(cat timestamp))" >> $BASH_ENV
- run:
name: Zip screenshots
Expand Down Expand Up @@ -168,7 +164,6 @@ commands:
git push origin --delete compare_$CIRCLE_BRANCH || true
fileSize=$(echo $(find ./app/build/outputs/roborazzi -type f | grep -e '.*_compare.png' | wc -l | sed -e 's/ //g'))
echo "fileSize: $fileSize"
if [ $fileSize -ne 0 ]; then
git checkout --orphan compare_$CIRCLE_BRANCH
git rm --cached -rf .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ fun ConverterScreenContent(
verticalAlignment = Alignment.CenterVertically,
) {
ConversionTypeCard(onSelectedChange = changeHiraKanaType)
Spacer(modifier = Modifier.weight(1f))
CustomButtonWithBackground(
id = R.drawable.ic_reset,
convertDescription = "reset",
Expand Down

0 comments on commit 9a37b3c

Please sign in to comment.