Skip to content

Commit 0d0aa74

Browse files
committed
Make package.yml workflow only run on tagged commits
1 parent 7fd6558 commit 0d0aa74

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/package.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Package
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
tags:
6+
- 'v2.*'
67

78
jobs:
89

@@ -97,7 +98,7 @@ jobs:
9798
with:
9899
name: dist
99100
path: dist
100-
- name: Install source distribution
101+
- name: Install wheel distribution
101102
run: python -m pip install dist/fs-*.whl
102103
- name: Remove source code
103104
run: rm -rvd fs

0 commit comments

Comments
 (0)