Skip to content

Commit

Permalink
ci: update event trigger for prerelease (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockopp authored and plyr4 committed Dec 17, 2019
1 parent 89bdcc3 commit 32c4be3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@
name: prerelease

# trigger on push events with `v*` in tag
# TODO: find an action that is compatible based off the tag event
# on:
# push:
# tags:
# - 'v*'

# trigger on release events
on:
push:
tags:
- 'v*'
release:
types: [ created ]

# pipeline to execute
jobs:
Expand Down

0 comments on commit 32c4be3

Please sign in to comment.