-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Testing GH Actions * updates * main * main * updates * With packages * Packets in meta * mkshape * with uml * pgfopts * With listings and uml fix * Collecting artifacts * With release pipeline -> test needed
- Loading branch information
1 parent
5d3317d
commit eb51c24
Showing
6 changed files
with
76 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Local Build | ||
|
||
env: | ||
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
- '!main' | ||
pull_request: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3.4.0 | ||
- name: Configure GIT | ||
run: | | ||
git config --global init.defaultBranch "main" | ||
git config --global user.email "ci@example.com" | ||
git config --global user.name "ci" | ||
git config --global --add safe.directory /src | ||
- name: Build and load | ||
run: make | ||
- name: Show and move generated pdf | ||
run: | | ||
ls -la | grep pdf | ||
mv thesis.pdf /tmp/thesis.pdf | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: thesis.pdf | ||
path: /tmp/thesis.pdf |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Release PDF | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+' | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3.4.0 | ||
- name: Configure GIT | ||
run: | | ||
git config --global init.defaultBranch "main" | ||
git config --global user.email "ci@example.com" | ||
git config --global user.name "ci" | ||
git config --global --add safe.directory /src | ||
- name: Build and load | ||
run: make | ||
- name: Show and move generated pdf | ||
run: | | ||
ls -la | grep pdf | ||
mv thesis.pdf /tmp/thesis.pdf | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: thesis.pdf | ||
path: /tmp/thesis.pdf | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: "/tmp/*.pdf" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,4 @@ | |
*.gin | ||
# Do not initialize twice | ||
.prepared | ||
packages.txt |
This file was deleted.
Oops, something went wrong.
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
Submodule meta
updated
10 files
+3 −3 | Makefile | |
+38 −0 | config/commands.tex | |
+5 −1 | config/packages.tex | |
+3 −0 | config/tlmgr/packages.txt | |
+1 −0 | exampleCode/hello.py | |
+22 −0 | exampleContent/exampleContentThesis.tex | |
+7 −0 | exampleGraphic/network.tikz | |
+10 −0 | exampleGraphic/sequence.tikz | |
+1,578 −0 | style/moeptikz.sty | |
+5,377 −0 | style/tikz-uml.sty |