Skip to content

Commit

Permalink
Run deploy on workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramo-Y committed Dec 14, 2023
1 parent 90c9bde commit eae854f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
build_and_deploy_job:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
Expand Down

0 comments on commit eae854f

Please sign in to comment.