We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1df633c commit 9997683Copy full SHA for 9997683
.github/workflows/release.yml
@@ -1,7 +1,7 @@
1
on:
2
+ workflow_dispatch:
3
push:
- tags:
4
- - "*"
+ tags: ["v*"]
5
6
jobs:
7
build:
@@ -12,7 +12,6 @@ jobs:
12
with:
13
extra-conf: |
14
extra-experimental-features = nix-command flakes
15
- allow-import-from-derivation = true
16
17
- name: Install Magic Nix Cache
18
uses: DeterminateSystems/magic-nix-cache-action@main
@@ -26,7 +25,9 @@ jobs:
26
25
set -eux
27
28
nix build .#iosevka-mono-nerd -Lv
29
- zip -9 -r iosevka-mono-nerd.zip ./result
+
+ # Contains fonts and a NerdFonts directory.
30
+ zip -9 -r iosevka-mono-nerd.zip ./result/share/fonts/truetype
31
32
- uses: ncipollo/release-action@v1
33
name: Release
0 commit comments