Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2023-11-21 23:45:55 +0100
committerGitHub <noreply@github.com>2023-11-21 23:45:55 +0100
commite73ac39a7eac8d7fe66275316bd1b78f8cfcae42 (patch)
tree85214b2c70c3165baa029f022bd693513a26f3a2
parent349c21d7a2b65884f831a3d09badd11ba8df14b6 (diff)
It appears jekyll might be needed? (#2239)
* It appears jekyll might be needed? https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-enable-built-in-jekyll-enable_jekyll * Added some debugging * Maybe jekyll is not needed?
-rw-r--r--.github/workflows/github-pages.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml
index 1df88dac..f8407170 100644
--- a/.github/workflows/github-pages.yml
+++ b/.github/workflows/github-pages.yml
@@ -14,15 +14,15 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- - name: debug
- run: |
- whoami
- name: Install pre-dependencies
run: |
- pacman -Sy --noconfirm git python-pyparted python-simple-term-menu python-setuptools python-sphinx python-sphinx_rtd_theme python-build python-installer python-wheel
+ pacman -Sy --noconfirm tree git python-pyparted python-simple-term-menu python-setuptools python-sphinx python-sphinx_rtd_theme python-build python-installer python-wheel
- name: Sphinx build
run: |
sphinx-build docs _build
+ - name: Some debugging
+ run: |
+ tree /__w/archinstall/archinstall/
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
# if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
@@ -30,4 +30,5 @@ jobs:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/
- force_orphan: true \ No newline at end of file
+ force_orphan: true
+ enable_jekyll: false \ No newline at end of file