From 6a3b2577c406f93e63e2d4cbeac948cb65fa506b Mon Sep 17 00:00:00 2001 From: Alexandre Vicenzi Date: Sat, 19 Sep 2020 20:14:52 +0200 Subject: [PATCH] Try another action --- .github/workflows/pelican-publish.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pelican-publish.yml b/.github/workflows/pelican-publish.yml index 10cd011..ada435e 100644 --- a/.github/workflows/pelican-publish.yml +++ b/.github/workflows/pelican-publish.yml @@ -10,15 +10,17 @@ jobs: uses: actions/checkout@v2 with: submodules: true - - uses: 1arp/create-a-file-action@0.2 + - name: Create requirements.txt + uses: 1arp/create-a-file-action@0.2 with: # path: 'docs' file: 'requirements.txt' content: | pelican markdown - - name: Publish - uses: nelsonjchen/gh-pages-pelican-action@master + - name: Build and Publish + uses: iranzo/gh-pages-pelican-action@master env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + SOURCE_FOLDER: docs PELICAN_CONFIG_FILE: docs/publishconf.py