fix: fix wrong numbering when skip mid-level headings #146
Workflow file for this run
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: Dev Build | |
on: | |
push: | |
branches: | |
- dev** | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: | | |
sudo apt install ruby sass -y | |
- name: Compile | |
run: | | |
cd ./src; make | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: my-artifact | |
path: | | |
./src/latex-theme/* |