Skip to content

Commit

Permalink
📦🧪 Include the changelog patch into sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz committed Jun 8, 2024
1 parent 13374a7 commit 627f718
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -894,6 +894,22 @@ jobs:
}}
ref: ${{ github.event.inputs.release-committish }}

- name: Fetch the GHA artifact with the version patch
uses: actions/download-artifact@v3
with:
name: changelog
- name: Apply the changelog patch but do not commit it
run: git apply '${{ needs.pre-setup.outputs.changelog-patch-name }}'
shell: bash
- name: Delete the changelog patch file
run: rm -fv '${{ needs.pre-setup.outputs.changelog-patch-name }}'
shell: bash
- name: Pretend that changelog updates never happened
run: |
git diff --color=always
git update-index --assume-unchanged $(git ls-files --modified)
shell: bash

- name: >-
Calculate Python interpreter version hash value
for use in the cache key
Expand Down

0 comments on commit 627f718

Please sign in to comment.