diff --git a/.github/workflows/discourse_leaderboard.yml b/.github/workflows/discourse_leaderboard.yml index 497fa3e..cc4464c 100644 --- a/.github/workflows/discourse_leaderboard.yml +++ b/.github/workflows/discourse_leaderboard.yml @@ -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