9595 # if: needs.writable-branch-detect.outputs.OKAY == 'true'
9696 with :
9797 token : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
98- ref : ${{ github.ref }} # don't lock to ' sha' b/c action needs to push
98+ ref : ${{ github.ref }} # dont lock to sha ( action needs to push)
9999 - uses : WIPACrepo/wipac-dev-py-setup-action@v5.0
100100 # if: needs.writable-branch-detect.outputs.OKAY == 'true'
101101 with :
@@ -114,11 +114,9 @@ jobs:
114114 # if: needs.writable-branch-detect.outputs.OKAY == 'true'
115115 with :
116116 token : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
117- ref : ${{ github.ref }} # don't lock to ' sha' b/c action needs to push
118- - uses : WIPACrepo/wipac-dev-py-dependencies-action@v2.1
117+ ref : ${{ github.ref }} # dont lock to sha ( action needs to push)
118+ - uses : WIPACrepo/wipac-dev-py-dependencies-action@prints-and-releases-only
119119 # if: needs.writable-branch-detect.outputs.OKAY == 'true'
120- with :
121- use_directory : true
122120
123121
124122 # ###########################################################################
@@ -175,11 +173,20 @@ jobs:
175173 # -> uses the most recent git tag for versioning (aka the one made above)
176174 # -> creates 'dist/' files
177175
176+ # Grab artifacts created by 'WIPACrepo/wipac-dev-py-dependencies-action'
177+ - if : steps.next-version.outputs.version != ''
178+ uses : actions/download-artifact@v4
179+ with :
180+ name : py-dependency-logs
181+ path : pydep-release-assets/
182+
178183 # GitHub Release
179184 - if : steps.next-version.outputs.version != ''
180185 uses : softprops/action-gh-release@v2
181186 with :
182- files : dist/*
187+ files : |
188+ dist/*
189+ pydep-release-assets/**/*
183190 tag_name : v${{ steps.next-version.outputs.version }} # must match git tag above
184191 generate_release_notes : true
185192
0 commit comments