Create main.yml

This commit is contained in:
Justin Ethier 2021-04-07 17:17:48 -04:00 committed by GitHub
parent 1ef8a5fcd6
commit 3c57b3aac7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

27
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: C API Docs
#on: [create]
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [64]
steps:
- uses: actions/checkout@v1
- name: Install doxygen
run: sudo apt-get install doxygen
- name: make doc
run: make doc && tar -cf html.tar html && bzip2 html.tar
- name: upload deb
if: matrix.arch == '64'
uses: actions/upload-artifact@v1
with:
name: cyclone-scheme docs
path: html.tar.bz2