Skip to content

Commit 971336d

Browse files
authored
Merge pull request #92 from espdev/fix-pipeline
Remove release_notes input from release pipeline
2 parents 644c44d + ac466c6 commit 971336d

2 files changed

Lines changed: 14 additions & 6 deletions

File tree

.github/workflows/main.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,22 @@ name: main
33
on:
44
push:
55
branches: [ master ]
6+
paths:
7+
- csaps/**/*
8+
- docs/**/*
9+
- tests/**/*
10+
- poetry.lock
11+
- pyproject.toml
12+
- .github/workflows/main.yml
613
pull_request:
714
branches: [ master ]
15+
paths:
16+
- csaps/**/*
17+
- docs/**/*
18+
- tests/**/*
19+
- poetry.lock
20+
- pyproject.toml
21+
- .github/workflows/main.yml
822

923
jobs:
1024
tests:

.github/workflows/release.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ name: Create Release
33
on:
44
workflow_dispatch:
55
inputs:
6-
release_notes:
7-
description: 'Release notes'
8-
type: string
9-
required: false
10-
default: ''
116
upload_to_pypi:
127
description: 'Upload the release to PyPI'
138
type: boolean
@@ -108,7 +103,6 @@ jobs:
108103
name: ${{ TAG_NAME }}
109104
tag_name: ${{ TAG_NAME }}
110105
files: dist/*
111-
body: inputs.release_notes
112106

113107
- name: Upload to PyPI
114108
if: ${{ inputs.upload_to_pypi }}

0 commit comments

Comments
 (0)