Skip to content

Commit 58b6fa1

Browse files
authored
Publish draft spec (#28)
* add spec.bs * bikeshed boilerplate
1 parent 0766de2 commit 58b6fa1

File tree

5 files changed

+827
-1
lines changed

5 files changed

+827
-1
lines changed

.gitattribute

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* text=auto
2+
*.bs diff=html linguist-language=HTML

.github/workflow/build.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
push:
7+
branches:
8+
- main
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Build
16+
run: make ci
17+
- name: Deploy
18+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
19+
uses: peaceiris/actions-gh-pages@v3
20+
with:
21+
github_token: ${{ secrets.GITHUB_TOKEN }}
22+
publish_dir: ./out

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
.DS_Store
2-
2+
spec.html

.pr-preview.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"src_file": "spec.bs",
3+
"type": "bikeshed"
4+
}

0 commit comments

Comments
 (0)