You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zip -r "release-artifacts/mona-sans-static-v${{ steps.version.outputs.version }}.zip" \
72
+
fonts/static/ OFL.txt README.md
73
+
74
+
# Create variable fonts package
75
+
zip -r "release-artifacts/mona-sans-variable-v${{ steps.version.outputs.version }}.zip" \
76
+
fonts/variable/ OFL.txt README.md
77
+
78
+
# Create webfonts package
79
+
if [ -d "fonts/webfonts" ]; then
80
+
zip -r "release-artifacts/mona-sans-webfonts-v${{ steps.version.outputs.version }}.zip" \
81
+
fonts/webfonts/ OFL.txt README.md
82
+
fi
83
+
84
+
# Create complete package with all formats
85
+
zip -r "release-artifacts/mona-sans-complete-v${{ steps.version.outputs.version }}.zip" \
86
+
fonts/ -x "fonts/googlefonts/*" \
87
+
OFL.txt README.md
88
+
89
+
- name: Create release notes
90
+
id: release_notes
91
+
run: |
92
+
cat > release_notes.md << 'EOF'
93
+
# Mona Sans ${{ steps.version.outputs.tag }}
94
+
95
+
A versatile typeface, designed by GitHub together with Degarism and inspired by industrial-era grotesques. Mona Sans works well across product, web, and print.
96
+
97
+
## Font Packages
98
+
99
+
- **Static Fonts** - Individual OTF and TTF files for each weight, width, and style
100
+
- **Variable Fonts** - Modern variable font files with adjustable weight and width
101
+
- **Web Fonts** - WOFF/WOFF2 files optimized for web use
102
+
- **Complete Package** - All font formats in one download
103
+
104
+
See the [README](https://github.com/github/mona-sans#readme) for detailed installation instructions.
0 commit comments