empty master branch now that the manual has been moved #43
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 to Github pages | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'develop' | |
jobs: | |
deploy: | |
name: Deploy to GitHub pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Installation of dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install texlive-xetex texlive-latex-extra texlive-fonts-recommended lmodern | |
- name: Pre-install Pandoc | |
run: | | |
wget https://github.com/jgm/pandoc/releases/download/2.18/pandoc-2.18-1-amd64.deb | |
sudo dpkg -i pandoc-2.18-1-amd64.deb | |
- uses: actions/checkout@v3 | |
- name: Compile and push to GitHub pages | |
run: ./deploy.sh | |
env: | |
ENCRYPTED_IV: ${{ secrets. ENCRYPTED_IV }} | |
ENCRYPTED_KEY: ${{ secrets. ENCRYPTED_KEY }} |