tangled
alpha
login
or
join now
jordanreger.com
/
htmlsky
0
fork
atom
An HTML-only Bluesky frontend
0
fork
atom
overview
issues
pulls
pipelines
remove environment variables in build
jordanreger.com
2 years ago
831de4db
c6840b6f
+4
-7
1 changed file
expand all
collapse all
unified
split
.build.yml
+4
-7
.build.yml
···
1
1
-
image: alpine/latest
1
1
+
image: alpine/edge
2
2
packages:
3
3
- unzip
4
4
-
- git
5
4
sources:
6
6
-
- https://git.sr.ht/~jordanreger/htmlsky
5
5
+
- https://git.sr.ht/~jordanreger/htmlsky#ts
7
6
environment:
8
7
DENO_INSTALL: /home/build/.deno
9
8
PATH: $DENO_INSTALL/bin:$PATH
10
9
tasks:
11
11
-
- checkout-ts: |
12
12
-
cd htmlsky
13
13
-
git checkout -q ts
14
14
-
git submodule update --init --recursive
15
10
- install-deno: |
16
11
curl -fsSL https://deno.land/x/install/install.sh | sh
12
12
+
export DENO_INSTALL="/home/build/.deno"
13
13
+
export PATH="$DENO_INSTALL/bin:$PATH"
17
14
- install-deployctl: |
18
15
deno install -Arf jsr:@deno/deployctl
19
16
- deploy: |