mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Create main.yml
This commit is contained in:
parent
1ef8a5fcd6
commit
3c57b3aac7
1 changed files with 27 additions and 0 deletions
27
.github/workflows/main.yml
vendored
Normal file
27
.github/workflows/main.yml
vendored
Normal 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
|
Loading…
Add table
Reference in a new issue