tangled
alpha
login
or
join now
timtinkers.online
/
onomatopoeia
0
fork
atom
bluesky quote bot
0
fork
atom
overview
issues
pulls
pipelines
Removed GitHub workflow
timtinkers.online
7 months ago
0164022f
d2fa465a
1/1
deploy.yaml
success
1m 50s
-35
1 changed file
expand all
collapse all
unified
split
.github
workflows
deploy.yml
-35
.github/workflows/deploy.yml
reviewed
···
1
1
-
name: Deploy
2
2
-
on:
3
3
-
push:
4
4
-
branches: main
5
5
-
pull_request:
6
6
-
branches: main
7
7
-
workflow_dispatch:
8
8
-
9
9
-
jobs:
10
10
-
deploy:
11
11
-
name: Deploy
12
12
-
runs-on: ubuntu-latest
13
13
-
14
14
-
permissions:
15
15
-
id-token: write # Needed for auth with Deno Deploy
16
16
-
contents: read # Needed to clone the repository
17
17
-
18
18
-
steps:
19
19
-
- name: Clone repository
20
20
-
uses: actions/checkout@v4
21
21
-
22
22
-
- name: Install Deno
23
23
-
uses: denoland/setup-deno@v2
24
24
-
with:
25
25
-
deno-version: v2.x
26
26
-
27
27
-
- name: Build step
28
28
-
run: "deno task build"
29
29
-
30
30
-
- name: Upload to Deno Deploy
31
31
-
uses: denoland/deployctl@v1
32
32
-
with:
33
33
-
project: "onomatopoeia"
34
34
-
entrypoint: "main.ts"
35
35
-
root: "."