mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-19 05:44:12 +01:00
pyln: Adjust the auto-publish task to trigger on tags
I was wondering why the workflow never published, turns out we were triggering on branch pushes only, not tags. So the branch would get pushed, but the tag is pushed afterwards, and thus not triggering.
This commit is contained in:
parent
7c2c100145
commit
aace5b51ef
5
.github/workflows/pypi.yml
vendored
5
.github/workflows/pypi.yml
vendored
@ -5,6 +5,11 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
tags:
|
||||
# Semantic versioning tags
|
||||
- 'v[0-9]+.[0-9]+.[0-9]+'
|
||||
# Date style tags
|
||||
- 'v[0-9]{2}.[0-9]{2}'
|
||||
jobs:
|
||||
deploy:
|
||||
name: Build and publish ${{ matrix.package }} 🐍
|
||||
|
Loading…
Reference in New Issue
Block a user