Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
gmatteo committed Oct 27, 2024
1 parent f02e827 commit d79a218
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Based on https://github.com/executablebooks/cookiecutter-jupyter-book/blob/main/.github/workflows/tests.yml
name: tests
name: Deploy documentation with GitHub Pages dependencies preinstalled

on:
# Trigger the workflow on push or pull request on main branch
Expand All @@ -9,10 +9,12 @@ on:
pull_request:
branches:
- master
#schedule:
# # Run cron job every month, https://crontab.guru/every-month
# - cron: '0 0 1 * *'
#workflow_dispatch:

# Set permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
#permissions:
# contents: read
# pages: write
# id-token: write

jobs:
# This job tests that the CC works
Expand Down Expand Up @@ -70,9 +72,21 @@ jobs:
- name: Upload the book's HTML as an artifact
uses: actions/upload-pages-artifact@v2
with:
path: abipy_book/abipy_book/_build/html
path: abipy_book/_build/html

# Deploy the book's HTML to GitHub Pages
#- name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v2


#deploy:
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# runs-on: ubuntu-latest
# needs: build
# steps:
# - name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v3

0 comments on commit d79a218

Please sign in to comment.