+5
-5
.tangled/workflows/build-publish.yaml
+5
-5
.tangled/workflows/build-publish.yaml
···
22
- git
23
- gcc
24
25
-
environment:
26
-
MANIFESTATION_CONFIG_DIR: "$PWD/manifestation_config"
27
-
28
steps:
29
# GODOTSTEAM
30
- name: "Get GodotSteam"
···
44
- name: "Install Manifestation"
45
command: "cargo install --git https://github.com/NotNite/manifestation.git"
46
47
- name: "Create Manifestation config dir"
48
command: "mkdir -pv $MANIFESTATION_CONFIG_DIR"
49
50
- name: "Add GodotSteam to manifestation config"
51
-
command: "echo 'godot_path = $PWD/godotsteam/linux-352-editor.64' > $MANIFESTATION_CONFIG_DIR/config.toml"
52
- name: "Add GDWeave to manifestation config"
53
-
command: "echo 'gdweave_path = $PWD/GDWeave' >> $MANIFESTATION_CONFIG_DIR/config.toml"
54
55
- name: "Run manifestation"
56
command: "~/.cargo/bin/manifestation ./manifestation.toml"
···
22
- git
23
- gcc
24
25
steps:
26
# GODOTSTEAM
27
- name: "Get GodotSteam"
···
41
- name: "Install Manifestation"
42
command: "cargo install --git https://github.com/NotNite/manifestation.git"
43
44
+
- name: "Set MANIFESTATION_CONFIG_DIR"
45
+
command: "MANIFESTATION_CONFIG_DIR=${pwd}/manifestation_config"
46
+
47
- name: "Create Manifestation config dir"
48
command: "mkdir -pv $MANIFESTATION_CONFIG_DIR"
49
50
- name: "Add GodotSteam to manifestation config"
51
+
command: "echo \"godot_path = ${PWD}/godotsteam/linux-352-editor.64\" > $MANIFESTATION_CONFIG_DIR/config.toml"
52
- name: "Add GDWeave to manifestation config"
53
+
command: "echo \"gdweave_path = ${$PWD}/GDWeave\" >> $MANIFESTATION_CONFIG_DIR/config.toml"
54
55
- name: "Run manifestation"
56
command: "~/.cargo/bin/manifestation ./manifestation.toml"