Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update readme #33

Merged
merged 1 commit into from
Apr 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
needs: package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- run: |
tag=$(gh release view -R ryanoasis/nerd-fonts --json tagName -q '.tagName')
gh release create "${tag}" --notes "JetBrainsMono Nerd Font ${tag}" ./build/*.msi
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/reusable-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ jobs:
package:
runs-on: windows-latest
steps:
- name: Install WiX v4
shell: pwsh
run: dotnet tool install --global wix
- uses: actions/checkout@v4
- name: Install Pandoc
shell: pwsh
Expand All @@ -17,7 +14,7 @@ jobs:
run: ./src/Build-Installer.ps1
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: build
path: src/bin/Release/en-US/*.msi
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# JetBrainsMono Nerd Font installer for Windows

This is a [WiX v4](https://wixtoolset.org/docs/intro/) based installer for the
This is a [WiX v5](https://wixtoolset.org/docs/intro/) based installer for the
[JetBrainsMono Nerd Font](https://www.nerdfonts.com/).

This installer is available on
Expand All @@ -12,14 +12,12 @@ winget install --id DEVCOM.JetBrainsMonoNerdFont

## Build prerequisites

- [WiX v4](https://wixtoolset.org/docs/intro/)
- [GitHub CLI](https://cli.github.com/)
- [Pandoc](https://pandoc.org/)

Install them with the following commands:

```powershell
dotnet tool install --global wix
winget install --id GitHub.cli
winget install --id JohnMacFarlane.Pandoc
```
Expand Down