We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7e56f5 commit 35650e7Copy full SHA for 35650e7
.github/workflows/deploy.yml
@@ -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