workflow gcc version update #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs-deployment | |
on: [push] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.x | |
- name: Install fypp | |
run: pip install --upgrade fypp | |
- name: Install ford | |
run: pip install --upgrade ford | |
- name: Generate fpm package 🔧 | |
run: | | |
make FYPPFLAGS=-DMFI_EXTENSIONS | |
ford ford.md | |
- name: Deploy docs 🚀 | |
uses: JamesIves/[email protected] | |
if: github.event_name != 'pull_request' | |
with: | |
BRANCH: docs | |
FOLDER: api-reference |