Fixup bib format of preprint #3
Workflow file for this run
This file contains hidden or 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: Release | |
| on: | |
| push: | |
| tags: | |
| - "v**" | |
| jobs: | |
| release: | |
| if: ${{ github.repository == 'ustctug/ustcthesis' }} | |
| name: Create GitHub release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up TeX Live | |
| uses: zauguin/install-texlive@v4 | |
| with: | |
| package_file: .github/tl_packages | |
| - name: Build zip | |
| run: make zip | |
| - name: Extract release notes | |
| id: extract-release-notes | |
| uses: ffurrer2/extract-release-notes@v3 | |
| - name: Create GitHub release | |
| uses: ncipollo/release-action@v1 | |
| if: startsWith(github.ref, 'refs/tags/v') | |
| with: | |
| artifacts: ustcthesis-*.zip | |
| body: ${{ steps.extract-release-notes.outputs.release_notes }} |