File tree 1 file changed +9
-3
lines changed
1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,17 @@ name: Release
3
3
on :
4
4
push :
5
5
tags :
6
- - ' * '
6
+ - " * "
7
7
8
8
jobs :
9
9
pypi-publish :
10
10
runs-on : ubuntu-latest
11
- if : github.repository == 'julianwachholz/django-autocompletefilter'
11
+ if : startsWith(github.ref, 'refs/tags/') && github.repository == 'julianwachholz/django-autocompletefilter'
12
12
environment :
13
13
name : pypi
14
14
url : https://pypi.org/p/django-autocompletefilter
15
15
permissions :
16
+ contents : write
16
17
id-token : write
17
18
steps :
18
19
- uses : actions/checkout@v4
33
34
twine check dist/*
34
35
35
36
- name : Upload packages
36
- if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
37
37
38
+
39
+ - name : Create release
40
+ uses : softprops/action-gh-release@v2
41
+ with :
42
+ generate_release_notes : true
43
+ files : dist/*
You can’t perform that action at this time.
0 commit comments