From 73633e11e457ef372276e4f133ad0d2c39903fff Mon Sep 17 00:00:00 2001 From: Georgiana Dolocan Date: Wed, 11 Dec 2024 15:49:04 +0200 Subject: [PATCH] Correctly mark step as a multiline command --- .github/workflows/recurrent-get-billing-data.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/recurrent-get-billing-data.yaml b/.github/workflows/recurrent-get-billing-data.yaml index 92f0ac4b9..21ee8af46 100644 --- a/.github/workflows/recurrent-get-billing-data.yaml +++ b/.github/workflows/recurrent-get-billing-data.yaml @@ -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