Nareshkumar Rao b68687f0bd
Some checks failed
Build and Release / build (push) Has been cancelled
wip
2025-03-23 03:27:54 +01:00

42 lines
1.1 KiB
YAML

name: Build and Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build LaTeX
uses: docker://nareshkumarrao/texliveonfly:latest
with:
entrypoint: /bin/sh
args: -c "tlmgr update --self --all && texliveonfly Main.tex && biber main && texliveonfly Main.tex && biber main && texliveonfly Main.tex"
# - name: Create Release
# uses: softprops/action-gh-release@v1
# if: startsWith(github.ref, 'refs/tags/')
# with:
# files: Main.pdf
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Deploy via FTP
# uses: SamKirkland/FTP-Deploy-Action@v4.3.4
# if: startsWith(github.ref, 'refs/tags/')
# with:
# server: nareshkumarrao.com
# username: ${{ secrets.FTP_USERNAME }}
# password: ${{ secrets.FTP_PASSWORD }}
# port: 21
# protocol: ftp
# local-dir: ./
# server-dir: master_thesis/
# include: Main.pdf