diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec6d640..7a60faa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/.github/workflows/reusable-package.yml b/.github/workflows/reusable-package.yml index 94620d5..d6a2189 100644 --- a/.github/workflows/reusable-package.yml +++ b/.github/workflows/reusable-package.yml @@ -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 @@ -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 diff --git a/README.md b/README.md index 198c6ec..84715f9 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ```