Browse Source

Update cloc.ps1

pull/437/head
Dmitry Nefedov 1 year ago
committed by GitHub
parent
commit
631cd747fd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      Scripts/cloc.ps1

7
Scripts/cloc.ps1

@ -1,9 +1,14 @@
# Download cloc
# https://github.com/AlDanial/cloc
$Token = "${{ secrets.GITHUB_TOKEN }}"
$Headers = @{
Accept = "application/json"
Authorization = "Bearer $Token"
}
$Parameters = @{
Uri = "https://api.github.com/repos/AlDanial/cloc/releases/latest"
Authentication = "Bearer `${{ secrets.GITHUB_TOKEN }}"
Headers = $Headers
UseBasicParsing = $true
Verbose = $true
}

Loading…
Cancel
Save