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 Mar 31, 2024
1 parent 45119aa commit 3c48779
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 @@ -20,7 +20,6 @@ commands:
if [ -n "$CIRCLE_PULL_REQUEST" ]; then
is_pr=true
fi
echo "is_pr: $is_pr"
echo "export IS_PR=$is_pr" >> $BASH_ENV
get_screenshots:
Expand All @@ -30,7 +29,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 @@ -39,7 +37,6 @@ commands:
if [ $IS_PR = "true" ]; 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 @@ -54,7 +51,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 @@ -156,7 +152,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 3c48779

Please sign in to comment.