Added Debian package for Mona Sans/Mono fonts#106
Open
moritzheiber wants to merge 4 commits intomainfrom
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the GitHub Actions release workflow to produce and publish a Debian (.deb) package for Mona Sans/Mona Sans Mono (targeting Ubuntu 24.04 LTS), alongside the existing release zip bundles.
Changes:
- Expose the computed
version/tagfrom thebuildjob via job outputs so downstream jobs can reuse them. - Upload the generated release zip files and built
fonts/directory as artifacts from thebuildjob. - Add a
build-debjob that downloads the built fonts, assembles a.deb, and makes it available to thereleasejob to publish with the rest of the release assets.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
There was a problem hiding this comment.
Pull request overview
Adds Debian packaging to the existing release workflow so Linux users (Ubuntu 24.04 LTS) can install Mona Sans/Mona Sans Mono via a .deb produced alongside the existing zip artifacts.
Changes:
- Expose
buildjob version/tag outputs for downstream jobs. - Upload build outputs as GitHub Actions artifacts (fonts + release zips).
- Add a
build-debjob to assemble and upload a Debian.deb, and update thereleasejob to attach all assets.
Comments suppressed due to low confidence (1)
.github/workflows/release.yml:193
- The zip and deb artifacts are uploaded from
release-artifacts/*.zip/release-artifacts/*.deb(so files are stored with therelease-artifacts/prefix). Downloading them intopath: release-artifacts/will likely create a nestedrelease-artifacts/release-artifacts/...directory, and thenfiles: release-artifacts/*plus the summaryfind ... -maxdepth 1won't see the assets. Download into the workspace root (or change the upload paths / release glob) so the files end up directly under a singlerelease-artifacts/directory.
- name: Download zip artifacts
uses: actions/download-artifact@v4
with:
name: mona-sans-release-zips-v${{ needs.build.outputs.version }}
path: release-artifacts/
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Linux users at GitHub need to manually install Mona Sans/Mono for it to work on their operating system. With the advent of M365, that becomes very relevant since the font is not provided by M365 at this time, and all documents on Linux are written/produced within the browser (Edge).
This PR adds a Debian package for the approved desktop environment (Ubuntu 24.04 LTS).