Skip to content

Commit

Permalink
chore: fix set-output warning
Browse files Browse the repository at this point in the history
  • Loading branch information
yeshan333 committed Jul 12, 2023
1 parent e3c1a72 commit d60fe32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 yeshan333
Copyright (c) 2021-2023 yeshan333

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ echo =========================================================================

start_time=$(date)

echo "::set-output name=end_time::$start_time"
echo "{start_time}={start_time}" >> $GITHUB_OUTPUT
echo "Start time of synchronization -> $start_time"

rsync -e "$SSH_COMMAND" $8 -av $5 $1@$2:$6

end_time=$(date)

echo "::set-output name=end_time::$end_time"
echo "{end_time}={end_time}" >> $GITHUB_OUTPUT
echo "End time of synchronization -> $end_time"

echo =========================================================================
Expand Down

0 comments on commit d60fe32

Please sign in to comment.