We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae98b5c commit e9eafb6Copy full SHA for e9eafb6
.github/workflows/cd.yml
@@ -34,6 +34,11 @@ jobs:
34
libxtst-dev \
35
pkg-config
36
37
+ - name: Update embedded locations
38
+ run: |
39
+ sed -i 's|"../../config/"|"../../../config/"|' crates/daktilo_lib/src/embed.rs
40
+ sed -i 's|"../../sounds/"|"../../../sounds/"|' crates/daktilo_lib/src/embed.rs
41
+
42
- name: Run release-plz
43
uses: MarcoIeni/[email protected]
44
env:
crates/daktilo_lib/src/embed.rs
@@ -8,7 +8,7 @@ use std::str;
8
9
/// Embedded sound assets.
10
#[derive(RustEmbed)]
11
-#[folder = "../../sounds"]
+#[folder = "../../sounds/"]
12
pub struct EmbeddedSound;
13
14
impl EmbeddedSound {
0 commit comments