Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jun 18, 2024
1 parent 4a14290 commit 5f1562c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,22 +73,22 @@ jobs:
case $MONTH in
03)
echo "POST_TITLE=$(($YEAR - 1))/${YEAR} Winter" >> $GITHUB_ENV
echo "START_DATE=$(($YEAR - 1))-12-20" >> $GITHUB_ENV
echo "START_DATE=$(($YEAR - 1))-12-21" >> $GITHUB_ENV
echo "END_DATE=${YEAR}-03-20" >> $GITHUB_ENV
;;
06)
echo "POST_TITLE=${YEAR} Spring" >> $GITHUB_ENV
echo "START_DATE=${YEAR}-03-20" >> $GITHUB_ENV
echo "START_DATE=${YEAR}-03-21" >> $GITHUB_ENV
echo "END_DATE=${YEAR}-06-20" >> $GITHUB_ENV
;;
09)
echo "POST_TITLE=${YEAR} Summer" >> $GITHUB_ENV
echo "START_DATE=${YEAR}-06-20" >> $GITHUB_ENV
echo "START_DATE=${YEAR}-06-21" >> $GITHUB_ENV
echo "END_DATE=${YEAR}-09-20" >> $GITHUB_ENV
;;
12)
echo "POST_TITLE=${YEAR} Fall" >> $GITHUB_ENV
echo "START_DATE=${YEAR}-09-20" >> $GITHUB_ENV
echo "START_DATE=${YEAR}-09-21" >> $GITHUB_ENV
echo "END_DATE=${YEAR}-12-20" >> $GITHUB_ENV
;;
esac
Expand Down Expand Up @@ -183,9 +183,9 @@ jobs:

- `book-tags`: Allow specific tags to be passed through. Separate each tag with a comma.

- `start-date`: The start date for the post. The format is `YYYY-MM-DD`.
- `start-date`: The start date for the post. The format is `YYYY-MM-DD`. This can be set as an action input or workflow input.

- `end-date`: The end date for the post. The format is `YYYY-MM-DD`.
- `end-date`: The end date for the post. The format is `YYYY-MM-DD`. This can be set as an action input or workflow input.

- `post-title`: The title of the post.
- `post-title`: The title of the post. This can be set as an action input or workflow input.
<!-- END GENERATED DOCUMENTATION -->

0 comments on commit 5f1562c

Please sign in to comment.