Skip to content

Commit b4f3c4f

Browse files
authored
Remove automatic release creation
This doesn't work anymore, and it is simple to do manually.
1 parent 837fa11 commit b4f3c4f

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -149,19 +149,4 @@ jobs:
149149
with:
150150
user: __token__
151151
password: ${{ secrets.PYPI_PASSWORD }}
152-
- name: Create Release Notes
153-
if: env.IS_MASTER_BUILD == 'true' && env.IS_TAG == 'true'
154-
run: |
155-
awk 'BEGIN{found=0} {if (match($0, "==============")) {if (found == 1) exit; found=1}; if (found == 1) {print last}; last=$0}' CHANGES.rst > release_notes.rst
156-
pandoc --from=rst --to=markdown -o release_notes.md release_notes.rst
157-
- name: Create GitHub Release
158-
if: env.IS_MASTER_BUILD == 'true' && env.IS_TAG == 'true'
159-
uses: actions/[email protected]
160-
env:
161-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
162-
with:
163-
tag_name: ${{ github.ref }}
164-
release_name: plateau ${{ github.ref }}
165-
body_path: release_notes.md
166-
draft: false
167-
prerelease: false
152+

0 commit comments

Comments
 (0)