We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0626df6 commit 5ff7d64Copy full SHA for 5ff7d64
.github/workflows/release.yml
@@ -29,7 +29,11 @@ jobs:
29
run: echo "VERSION=$(python3 -c "import simphony; print(simphony.__version__)")" >> $GITHUB_ENV
30
- name: Load Release text
31
run: |
32
- echo "BODY=$(python scripts/get_changelog_entry.py ${{ env.VERSION }})" >> $GITHUB_ENV
+ {
33
+ echo 'BODY<<EOF'
34
+ python scripts/get_changelog_entry.py ${{ env.VERSION }}
35
+ echo EOF
36
+ } >> "$GITHUB_ENV"
37
- name: Publish to PyPI
38
uses: pypa/gh-action-pypi-publish@v1.1.0
39
with:
0 commit comments