File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 workflow_dispatch :
88
99jobs :
10- build :
11- name : Build & Publish 🚀
12- runs-on : ubuntu-latest
13- env :
14- INPUTPATH : asciidocs
15- OUTPUTPATH : dist
16- SLIDES : true
17- BRANCH : gh-pages
18- steps :
19- - name : Checkout repo
20- uses : actions/checkout@v4
21- - name : Build
22- uses : quirinecker/asciidoctor-convert-action@main
23- with :
24- slides : ${{ env.SLIDES }}
25- inputPath : ${{ env.INPUTPATH }}
26- outputPath : ${{ env.OUTPUTPATH }}
27- - name : Deploy to GitHub Pages
28- uses : JamesIves/github-pages-deploy-action@releases/v4
29- with :
30- TOKEN : ${{ github.TOKEN }}
31- BRANCH : ${{ env.BRANCH }}
32- FOLDER : ${{ env.OUTPUTPATH }}
3310 bump :
3411 name : Get And Bump SemVer 👊
3512 runs-on : ubuntu-latest
36- needs : [build]
3713 steps :
3814 - name : Checkout repo
3915 uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments