Skip to content

contact update

contact update #45

Workflow file for this run

name: Build and Deploy
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: sudo gem install asciidoctor
- name: README to HTML
run: |
mkdir build
mkdir build/images
cp images/*.png build/images
asciidoctor README.adoc -o index.html -D build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: build