File tree 2 files changed +21
-1
lines changed
2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change 41
41
42
42
- name : Test doc examples
43
43
run : nimble doc --warningAsError:BrokenLink:on --project src/ponairi.nim
44
+
45
+ deploy :
46
+ name : Documentation
47
+ needs : test
48
+ permissions :
49
+ pages : write # To deploy to Pages
50
+ id-token : write # Verify deployment
51
+ runs-on : ubuntu-latest
52
+ if : github.ref == 'refs/heads/master'
53
+ steps :
54
+ - uses : actions/checkout@v4
55
+
56
+ - name : " Setup nim"
57
+ uses : jiro4989/setup-nim-action@v1
58
+
59
+ - name : " Build documentation"
60
+ uses : ire4ever1190/nim-docs-action@v1
61
+ with :
62
+ main-file : " src/ponairi.nim"
63
+ deploy : " pages"
Original file line number Diff line number Diff line change 2
2
3
3
Simple ORM to handle basic CRUD tasks. Future plans are to expand the query generation to make needing to write SQL less common
4
4
5
- [ Docs here] ( https://tempdocs.netlify.app /ponairi/stable /ponairi.html )
5
+ [ Docs here] ( https://ire4ever1190.github.io /ponairi/ponairi.html )
6
6
7
7
### Create
8
8
You can’t perform that action at this time.
0 commit comments