We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9be91ff commit bd510d0Copy full SHA for bd510d0
1 file changed
.github/workflows/code-quality.yaml
@@ -274,10 +274,18 @@ jobs:
274
needs:
275
- test-production-pypi
276
steps:
277
+ - name: Get version from tag
278
+ id: tag_name
279
+ run: |
280
+ echo ::set-output name=current_version::${GITHUB_REF#refs/tags/v}
281
+ shell: bash
282
- uses: actions/checkout@v2
283
- name: Get latest Changelog Entry
284
id: changelog_entry
285
uses: mindsers/changelog-reader-action@v2
286
+ with:
287
+ version: ${{ steps.tag_name.outputs.current_version }}
288
+ path: ./CHANGELOG.md
289
- name: Retrieve packages
290
uses: actions/download-artifact@v2.0.7
291
with:
0 commit comments