Skip to content

Commit 9b2bd8f

Browse files
committed
Merge branch 'develop' of https://github.com/pyrevitlabs/pyRevit into develop
2 parents d500f24 + 857fa40 commit 9b2bd8f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,10 @@ jobs:
154154

155155
# default retention period is 90 days
156156
# https://github.com/marketplace/actions/upload-a-build-artifact#retention-period
157-
- name: Find and list files for signing
157+
- name: Find and list pyRevit files for signing (Windows)
158158
run: |
159-
find bin/ -type f \( -name "pyrevit*.exe" -o -name "pyrevit*.dll" \) > files-to-sign.txt
159+
Get-ChildItem -Path bin -Recurse -File | Where-Object { $_.Name -match '^pyrevit.*\.(exe|dll)$' } | ForEach-Object { $_.FullName } | Set-Content files-to-sign.txt
160+
shell: pwsh
160161

161162
- name: Sign files with Trusted Signing (DLLs and EXEs)
162163
if: (github.repository == env.MainRepo)

0 commit comments

Comments
 (0)