Skip to content

Commit

Permalink
fix: ci: update artifact conditional. add inspection step
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen L Arnold <sarnold@vctlabs.com>
  • Loading branch information
sarnold committed Jul 16, 2023
1 parent 9f202ba commit 6b11834
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ jobs:
tox -e build
- name: Upload artifacts
if: matrix.python-version == 3.8 && runner.os != 'Windows'
if: matrix.python-version == 3.9 && runner.os == 'Linux'
uses: actions/upload-artifact@v3
with:
name: packages
path: dist/ymltoxml*
path: dist

create_release:
name: Create Release
Expand All @@ -71,6 +71,10 @@ jobs:
# download all artifacts to project dir
- uses: actions/download-artifact@v3

- name: check artifacts
run: |
ls -l packages/
- name: Generate changes file
uses: sarnold/gitchangelog-action@master
with:
Expand Down

0 comments on commit 6b11834

Please sign in to comment.