Skip to content

Commit

Permalink
Merge pull request 2i2c-org#5272 from GeorgianaElena/auto-prj-management
Browse files Browse the repository at this point in the history
[GHA] Correctly run step as multiple commands rather than one long one
GeorgianaElena authored Dec 11, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents fd615d4 + 73633e1 commit 5589b06
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
@@ -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

0 comments on commit 5589b06

Please sign in to comment.