Skip to content

translated issue templates #6

translated issue templates

translated issue templates #6

Workflow file for this run

name: Pages CI
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
jobs:
build-and-deploy:
name: Build and deploy HTML
runs-on: ubuntu-latest
steps:
- name: Fetching sources from repository
uses: actions/checkout@v3
- name: Setting up Python interpreter
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Installing dependencies
run: |
pip install --upgrade pip
pip install sphinx
- name: Building HTML using Sphinx
run: |
make html
env:
CI_ACTION: '1'
- name: Deploying built HTML to GitHub pages
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: build/html
force: false