Skip to content

Commit

Permalink
fix multi line workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
shaked-develeap committed Jul 28, 2023
1 parent 3e26746 commit 86cacbf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/discourse_leaderboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run python main.py
run: |
python main.py
--user ${{ env.DISCOURSE_USER }}
--token ${{ secrets.DISCOURSE_TOKEN }}
--start_date ${{ github.event.inputs.from_date }}
python main.py \
--user ${{ env.DISCOURSE_USER }} \
--token ${{ secrets.DISCOURSE_TOKEN }} \
--start_date ${{ github.event.inputs.from_date }} \
--end_date ${{ github.event.inputs.to_date }}
- name: Archive png file
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 86cacbf

Please sign in to comment.