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 346b71d commit 857fa40Copy full SHA for 857fa40
.github/workflows/main.yml
@@ -154,9 +154,10 @@ jobs:
154
155
# default retention period is 90 days
156
# https://github.com/marketplace/actions/upload-a-build-artifact#retention-period
157
- - name: Find and list files for signing
+ - name: Find and list pyRevit files for signing (Windows)
158
run: |
159
- find bin/ -type f \( -name "pyrevit*.exe" -o -name "pyrevit*.dll" \) > files-to-sign.txt
+ 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
161
162
- name: Sign files with Trusted Signing (DLLs and EXEs)
163
if: (github.repository == env.MainRepo)
0 commit comments