Browse code

Move uploaded binaries inside uxn directory.

Andrew Alderwick authored on 17/01/2022 23:29:35
Showing 2 changed files
... ...
@@ -7,7 +7,7 @@ packages:
7 7
     - zip
8 8
 oauth: pages.sr.ht/PAGES:RW
9 9
 environment:
10
-    SITE: rabbits.srht.site
10
+    SITE: rabbits.srht.site/uxn
11 11
     SSH_HOST_KEYS: |
12 12
         [w1.uxn-build.ald.nu]:2222 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP+IYCB4JrKklFjWSMRkPBTqUjBqUuhlDQy6/X3l8xj5
13 13
         [m1.uxn-build.ald.nu]:2223 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDvWVqlHh3XQ5ziEbT55K896/mW2BVDdkU6hWgIfU9md
... ...
@@ -58,8 +58,6 @@ tasks:
58 58
         if [ "$(cd uxn && git rev-parse HEAD)" != "$(cd uxn && git rev-parse origin/main)" ]; then exit; fi
59 59
         ls -l out
60 60
         tar -czf out.tar.gz -C out .
61
-        mkdir empty
62
-        tar -czf out.tar.gz -C empty .
63 61
         acurl() {
64 62
             set +x
65 63
             curl -H "Authorization: Bearer ${OAUTH2_TOKEN}" "${@}"
... ...
@@ -4,7 +4,7 @@ An assembler and emulator for the [Uxn stack-machine](https://wiki.xxiivv.com/si
4 4
 
5 5
 ## Download binaries
6 6
 
7
-Binaries are available for 64-bit x86 computers running [Linux](https://rabbits.srht.site/uxn-linux-amd64.tar.gz), [Windows](https://rabbits.srht.site/uxn-windows-64bit.zip) and [macOS](https://rabbits.srht.site/uxn-macos.tar.gz).
7
+Binaries are available for 64-bit x86 computers running [Linux](https://rabbits.srht.site/uxn/uxn-linux-amd64.tar.gz), [Windows](https://rabbits.srht.site/uxn/uxn-windows-64bit.zip) and [macOS](https://rabbits.srht.site/uxn/uxn-macos.tar.gz). There's also a sampler pack of ROMs available as a [tarball](https://rabbits.srht.site/uxn/uxn-rompack.tar.gz) or a [zipfile](https://rabbits.srht.site/uxn/uxn-rompack.zip).
8 8
 
9 9
 ## Build
10 10