Files
beam-vr-diploma/.github/workflows/cd.yaml

33 lines
601 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: cd
on:
push:
branches:
- main
jobs:
cd:
runs-on: ubuntu-latest
env:
BRANCH: gh-pages
steps:
- name: Checkout 🛎
uses: actions/checkout@master
- name: Build thesis ⚙️
uses: repaction/texlive@main
with:
root_file: thesis.tex
- name: Prepare files 🗄
run: mkdir dist
- name: Deploy application 🚀
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ github.TOKEN }}
BRANCH: ${{ env.BRANCH }}
FOLDER: dist