tangled
alpha
login
or
join now
zambyte.robbyzambito.me
/
zaprus
0
fork
atom
Adversarial C2 Protocol Implemented in Zig
0
fork
atom
overview
issues
2
pulls
pipelines
wip
Robby Zambito
1 month ago
bc1c9a13
f1322113
1/1
build.yml
success
1m 54s
+26
1 changed file
expand all
collapse all
unified
split
.tangled
workflows
build.yml
+26
.tangled/workflows/build.yml
···
1
1
+
when:
2
2
+
- event: ["push", "pull_request", "manual"]
3
3
+
branch: ["dev", "master", "test*"]
4
4
+
tag: ["v*"]
5
5
+
6
6
+
engine: "nixery"
7
7
+
8
8
+
dependencies:
9
9
+
nixpkgs:
10
10
+
- rclone
11
11
+
git+https://github.com/mitchellh/zig-overlay:
12
12
+
- master
13
13
+
14
14
+
steps:
15
15
+
- name: "Build"
16
16
+
command: "zig build --release=fast -Dcpu=baseline"
17
17
+
- name: "Publish"
18
18
+
command: |
19
19
+
rclone sync ./zig-out \
20
20
+
--webdav-url "$RELEASE_NEXTCLOUD_HOST/remote.php/dav/files/$RELEASE_NEXTCLOUD_USER/" \
21
21
+
--webdav-user "$RELEASE_NEXTCLOUD_USER" \
22
22
+
--webdav-pass "$RELEASE_NEXTCLOUD_PASS" \
23
23
+
--webdav-vendor nextcloud \
24
24
+
:webdav:"zaprus/zaprus-$TANGLED_REF_NAME" \
25
25
+
-q
26
26
+