Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ jobs:
MASTODON_TOKEN: ${{ secrets.MASTODON_TEST_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
APP_ENV: dev
DEBUG_SOURCES: ${{ inputs.debugsources != false }}
DEBUG_POSTERS: ${{ inputs.debugposters != false }}
DEBUG_SOURCES: ${{ github.event_name != 'workflow_dispatch' || inputs.debugsources }}
DEBUG_POSTERS: ${{ github.event_name != 'workflow_dispatch' || inputs.debugposters }}
run: |
#In order to create posts on the test accounts remove the --debugposters debug flag
FLAGS=""
Expand Down
Loading