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:02:47 +0100
committerGitHub <noreply@github.com>2023-11-21 23:02:47 +0100
commit349c21d7a2b65884f831a3d09badd11ba8df14b6 (patch)
tree9771e744e29c3b1b9ee854361c2505df2195aa6f
parentf02af54356ddcf59ff3149fc505d80122a1884da (diff)
GitHub pages improvement (#2237)
* Moved to arch container * Swapped branch for testing * Removed publish if condition for now * I think I got it this time, publish_branch has to be separate in order for the runner to create it and have access to pushing things? * Missing 'git' depndency, to work with git heh
-rw-r--r--.github/workflows/github-pages.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml
index ebea712a..1df88dac 100644
--- a/.github/workflows/github-pages.yml
+++ b/.github/workflows/github-pages.yml
@@ -8,6 +8,9 @@ permissions:
jobs:
docs:
runs-on: ubuntu-latest
+ container:
+ image: archlinux:latest
+ options: --privileged
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
@@ -16,18 +19,15 @@ jobs:
whoami
- name: Install pre-dependencies
run: |
- sudo apt update && sudo apt install libparted-dev
- - name: Install dependencies
- run: |
- pip install sphinx sphinx_rtd_theme pyparted simple-term-menu
+ pacman -Sy --noconfirm 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: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
+ # if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
- publish_branch: master
+ publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/
force_orphan: true \ No newline at end of file