Skip to content

Commit

Permalink
Correctly mark step as a multiline command
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgianaElena committed Dec 11, 2024
1 parent fd615d4 commit 73633e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/recurrent-get-billing-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
steps:
- name: Get the next month name
id: get_next_month
run: echo "next_month=$(date -d '+1 month' +'%B')" >> $GITHUB_ENV
run: |
echo "next_month=$(date -d '+1 month' +'%B')" >> $GITHUB_ENV
echo "start_date_as_iso=$(date -d '+1 month' +'%Y-%m-02')" >> $GITHUB_ENV
echo "end_date_as_iso=$(date -d '+1 month' +'%Y-%m-07')" >> $GITHUB_ENV
Expand Down

0 comments on commit 73633e1

Please sign in to comment.