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 be69789 commit 644b86dCopy full SHA for 644b86d
.github/workflows/reusable-package.yml
@@ -8,7 +8,8 @@ jobs:
8
- uses: actions/checkout@v3
9
- name: Build package
10
run: |
11
- $asset = gh release view -R ryanoasis/nerd-fonts --json assets -q '.assets[].url|match("^.*JetBrainsMono.*$"; "g")|.string'
+ (gh release view -R ryanoasis/nerd-fonts --json assets) -match '(?<url>https://[^"]+?JetBrainsMono\.zip)"'
12
+ $asset = $Matches.url
13
14
Invoke-WebRequest -Uri $asset -OutFile $PSScriptRoot\JetBrainsMono.zip
15
Remove-Item `
0 commit comments