From 15e1681f0be02f15420a731c3d085c538733e6a2 Mon Sep 17 00:00:00 2001 From: Alexandre Vicenzi Date: Sat, 19 Sep 2020 21:35:02 +0200 Subject: [PATCH] Try again --- .github/workflows/pelican-publish.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pelican-publish.yml b/.github/workflows/pelican-publish.yml index b77ebf4..4e688c6 100644 --- a/.github/workflows/pelican-publish.yml +++ b/.github/workflows/pelican-publish.yml @@ -10,10 +10,21 @@ jobs: uses: actions/checkout@v2 with: submodules: true - - name: Change path - run: cd docs + - name: Create requirements.txt + uses: 1arp/create-a-file-action@0.2 + with: + file: requirements.txt + content: | + pelican + markdown + - name: Create build.sh + uses: 1arp/create-a-file-action@0.2 + with: + file: build.sh + content: | + cd docs - name: Build and Publish - uses: nelsonjchen/gh-pages-pelican-action@master + uses: iranzo/gh-pages-pelican-action@1.0.1 env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} - PELICAN_CONFIG_FILE: docs/publishconf.py + PELICAN_CONFIG_FILE: publishconf.py