From 4369e72e2823007b6dfc4b3983f3ed897b84c7e4 Mon Sep 17 00:00:00 2001 From: jerabekjak Date: Mon, 11 Mar 2024 16:49:52 +0100 Subject: [PATCH] add workflow for reference manual --- .github/workflows/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/Makefile diff --git a/.github/workflows/Makefile b/.github/workflows/Makefile new file mode 100644 index 0000000..db116ba --- /dev/null +++ b/.github/workflows/Makefile @@ -0,0 +1,21 @@ +name: Make_ref +on: + push: + branches: + - master +permissions: + contents: write +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - uses: actions/cache@v2 + with: + key: ${{ github.ref }} + path: .cache + - run: pip install -r user_guide/requirements.txt + - run: (cd reference_manual ; make; make en)