Rewrite derivative routines to use wrapped FFT calls #22
Workflow file for this run
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: Deploy docs to GitHub Pages | |
# on: | |
# push: | |
# branches: | |
# - main | |
# permissions: | |
# contents: read | |
# pages: write | |
# id-token: write | |
# concurrency: | |
# group: "pages" | |
# cancel-in-progress: true | |
# jobs: | |
# build-docs: | |
# uses: ./.github/workflows/build_docs.yml | |
# with: | |
# artifact_name: exponax-docs-html | |
# deploy: | |
# needs: [build-docs] | |
# environment: | |
# name: github-pages | |
# url: ${{ steps.deployment.outputs.page_url }} | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Setup Pages | |
# uses: actions/configure-pages@v2 | |
# - name: Download HTML doc artifact | |
# uses: actions/download-artifact@v3 | |
# with: | |
# name: exponax-docs-html | |
# path: docs_build | |
# - name: Upload pages artifact | |
# uses: actions/upload-pages-artifact@v1 | |
# with: | |
# path: docs_build | |
# - name: Deploy to GitHub Pages | |
# id: deployment | |
# uses: actions/deploy-pages@v1 |