diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml deleted file mode 100644 index bfed4ca..0000000 --- a/.github/workflows/gh-pages.yaml +++ /dev/null @@ -1,38 +0,0 @@ -name: GitHub Pages - -on: - push: - branches: - - main # Set a branch name to trigger deployment - pull_request: - -jobs: - deploy: - runs-on: ubuntu-22.04 - permissions: - contents: write - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - steps: - - uses: actions/checkout@v3 - with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 - with: - hugo-version: '0.110.0' - - - name: Build - run: hugo --minify - - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - # If you're changing the branch from main, - # also change the `main` in `refs/heads/main` - # below accordingly. - if: github.ref == 'refs/heads/main' - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./public diff --git a/Building_docs.md b/docs/building_docs.md similarity index 100% rename from Building_docs.md rename to docs/building_docs.md diff --git a/paper.bib b/paper.bib deleted file mode 100644 index e69de29..0000000 diff --git a/test.py b/test.py deleted file mode 100644 index 2e7e0e5..0000000 --- a/test.py +++ /dev/null @@ -1,6 +0,0 @@ -from pathlib import Path -version_dict = {} -with open(Path(__file__).parents[0] / 'asimtools/_version.py') as fp: - exec(fp.read(), version_dict) - -print(version_dict['__version__'])