💰 Monthly Receivable Fees #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 💰 Monthly Receivable Fees | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 1,15 * *" | |
| jobs: | |
| schedule: | |
| name: 💰 Periodic Receivable Fees | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: superfly/flyctl-actions/setup-flyctl@master | |
| - run: flyctl ssh console -C "python manage.py create_receivable_fees_for_next_period" | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} | |
| - run: flyctl ssh console -C "python manage.py set_due_receivable_fees" | |
| env: | |
| FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} |