tangled
alpha
login
or
join now
regnault.dev
/
webfishing-atproto
8
fork
atom
this repo has no description
8
fork
atom
overview
issues
pulls
pipelines
First try
regnault.dev
5 months ago
b096fc9d
68066809
0/1
build-publish.yaml
failed
1m 8s
+57
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
build-publish.yaml
+57
.tangled/workflows/build-publish.yaml
reviewed
···
1
1
+
when:
2
2
+
- event: ["push", "manual"]
3
3
+
branch: ["master"]
4
4
+
- event: ["push", "manual"]
5
5
+
branch: ["testing"]
6
6
+
7
7
+
engine: "nixery"
8
8
+
9
9
+
# using the default values
10
10
+
clone:
11
11
+
skip: false
12
12
+
depth: 1
13
13
+
submodules: false
14
14
+
15
15
+
dependencies:
16
16
+
# nixpkgs
17
17
+
nixpkgs:
18
18
+
- cargo
19
19
+
- dotnet-sdk
20
20
+
- wget
21
21
+
- unzip
22
22
+
- git
23
23
+
24
24
+
environment:
25
25
+
MANIFESTATION_CONFIG_DIR: "$PWD/manifestation_config"
26
26
+
27
27
+
steps:
28
28
+
# MANIFESTATION
29
29
+
- name: "Install manifestation"
30
30
+
command: "cargo install --git https://github.com/NotNite/manifestation.git"
31
31
+
32
32
+
# GODOTSTEAM
33
33
+
- name: "Get GodotSteam"
34
34
+
command: "wget https://codeberg.org/godotsteam/godotsteam/releases/download/v3.21/linux64-g352-s158-gs321.zip -O godotsteam.zip"
35
35
+
- name: "Unzip GodotSteam"
36
36
+
command: "unzip godotsteam.zip -d godotsteam"
37
37
+
- name: "Make GodotSteam executable"
38
38
+
command: "chmod +x godotsteam/linux-352-editor.64"
39
39
+
40
40
+
# GDWEAVE
41
41
+
- name: "Get GDWeave"
42
42
+
command: "wget https://github.com/NotNite/GDWeave/releases/download/v2.0.14/GDWeave.zip -O gdweave.zip"
43
43
+
- name: "Unzip GDWeave"
44
44
+
command: "unzip gdweave.zip"
45
45
+
46
46
+
# MANIFESTATION
47
47
+
- name: "Install Manifestation"
48
48
+
command: "cargo install --git https://github.com/NotNite/manifestation.git"
49
49
+
50
50
+
- name: "Create Manifestation config dir"
51
51
+
command: "mkdir -pv MANIFESTATION_CONFIG_DIR"
52
52
+
53
53
+
- name: "Create Manifestation config"
54
54
+
command: "echo \"godot_path=$PWD/godotsteam/linux-352-editor.64\ngdweave_path=$PWD/GDWeave\" > MANIFESTATION_CONFIG_DIR/config.toml"
55
55
+
56
56
+
- name: "Run manifestation"
57
57
+
command: "~/.cargo/bin/manifestation ./manifestation.toml"