Skip to content

Commit

Permalink
Trigger pipeline for release events (#147)
Browse files Browse the repository at this point in the history
The pipeline was not being triggered for release events so the deployment step would never run
  • Loading branch information
fmrsabino authored Nov 16, 2021
1 parent 176c5a3 commit b319871
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Python CI
on: [push, pull_request]
on:
push:
pull_request:
release:
types: [ released ]

jobs:
test-app:
Expand Down
2 changes: 1 addition & 1 deletion safe_notification_service/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.5.6'
__version__ = '1.5.7'
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace('-', '.', 1).split('.')])

0 comments on commit b319871

Please sign in to comment.