Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Fix many spelling mistakes. #33

Fix many spelling mistakes.

Fix many spelling mistakes. #33

Workflow file for this run

name: latex
on:
push:
branches:
- main
- development
jobs:
compile:
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Fetch
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Versioning
uses: anothrNick/github-tag-action@master
id: version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
RELEASE_BRANCHES: main
DEFAULT_BUMP: patch
DRY_RUN: true # We want to manually create the release.
- run: |
echo "${{ steps.version.outputs.new_tag }}" > version
cat version
- name: Compile
uses: dante-ev/latex-action@latest
with:
root_file: thesis.tex
args: -lualatex
- name: Release
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ steps.version.outputs.new_tag }}"
prerelease: ${{ github.ref == 'refs/heads/main' && 'false' || 'true' }}
files: |
thesis.pdf