Skip to content

Commit 35650e7

Browse files
authored
Auto push to publish
1 parent f7e56f5 commit 35650e7

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Deploy
2+
on: [push]
3+
4+
jobs:
5+
deploy:
6+
name: Deploy
7+
runs-on: ubuntu-latest
8+
permissions:
9+
id-token: write
10+
contents: read
11+
12+
steps:
13+
- name: Clone repository
14+
uses: actions/checkout@v2
15+
16+
- name: Build spec
17+
run: |
18+
mkdir -p out
19+
curl --retry 2 https://api.csswg.org/bikeshed/ --output out/index.html --header "Accept: text/plain, text/html" -F die-on=fatal -F file=@"index.bs"
20+
- name: Upload to Deno Deploy
21+
uses: denoland/deployctl@v1
22+
with:
23+
project: "proposal-common-min-api"
24+
entrypoint: "https://deno.land/[email protected]/http/file_server.ts"
25+
root: out/

0 commit comments

Comments
 (0)