-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (32 loc) · 1021 Bytes
/
render.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Render
on: [push, workflow_dispatch]
jobs:
asciidoctor_job:
runs-on: ubuntu-latest
name: Render AsciiDoctor
steps:
- name: Check out code 🛎️
uses: actions/checkout@v2
- name: Build AsciiDoc step 🔧
id: documents
uses: Analog-inc/[email protected]
with:
shellcommand: "./.github/workflows/asciidoc.sh"
- name: Copy images for HTML output
run: |
sudo cp -rv images outputs/html
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Deploy binaries 🚀
uses: JamesIves/[email protected]
with:
branch: rendered/${{ steps.extract_branch.outputs.branch }}
folder: outputs
- name: Deploy GH pages 🚀
uses: JamesIves/[email protected]
if: ${{ github.ref == 'refs/heads/main' }}
with:
branch: gh-pages
folder: outputs/html