Skip to content

Commit 28c212e

Browse files
committed
update workflows
1 parent 8d106fa commit 28c212e

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lint
1+
name: Lint
22

33
on:
44
push:

.github/workflows/release.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
gh release create
105105
'${{ github.ref_name }}'
106106
--repo '${{ github.repository }}'
107-
--notes ""
107+
--generate-notes
108108
- name: Upload artifact signatures to GitHub Release
109109
env:
110110
GITHUB_TOKEN: ${{ github.token }}
@@ -141,3 +141,13 @@ jobs:
141141
with:
142142
repository-url: https://test.pypi.org/legacy/
143143
skip-existing: true
144+
145+
notify-django-packages:
146+
name: Notify Django Packages
147+
runs-on: ubuntu-latest
148+
needs:
149+
- publish-to-pypi
150+
steps:
151+
- name: Notify Django Packages
152+
run:
153+
curl -X GET "https://djangopackages.org/packages/django-typer/fetch-data/"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: test
1+
name: Test
22

33
on:
44
push:

0 commit comments

Comments
 (0)