Cleaning up the commit history

This is a test, if it is possible to clean up the commit history. I am using this chance, to properly write commit messages and try using the GitHub issue system.
This commit is contained in:
Felix Förtsch
2020-04-05 19:22:02 +02:00
commit 09ab8b9353
409 changed files with 223994 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
# Workflow Version: v7
name: Build PDF-Snapshot
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v1
- name: Compile LaTeX document
uses: dante-ev/latex-action@master
with:
args: -xelatex -latexoption=-file-line-error -latexoption=-interaction=nonstopmode
root_file: main.tex
working_directory: Work/
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- First Change
- Second Change
draft: false
prerelease: false
- name: Upload Artifact
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: Work/main.pdf
asset_name: main.pdf
asset_content_type: application/pdf