.github/workflows/ci.yml #14
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
on: | |
push: | |
branches: | |
- master | |
create: | |
tags: | |
jobs: | |
build: | |
name: Build Project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
ref: master | |
fetch-depth: 0 # To get all tags | |
- name: Build docker images | |
run: docker build . -t local -f .devcontainer/Dockerfile | |
- name: Create revision | |
run: docker run -v $GITHUB_WORKSPACE:/srv -w/srv local make revision.tex | |
- name: Build | |
run: docker run -v $GITHUB_WORKSPACE:/srv -w/srv local make | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update preview | |
- name: Upload refcard | |
uses: actions/upload-artifact@v2 | |
with: | |
name: pdf | |
path: refcard.pdf | |
if-no-files-found: error | |
release: | |
name: Create Release | |
needs: build | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags') | |
steps: | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Download artifacts | |
uses: actions/[email protected] | |
with: | |
name: pdf | |
path: dist | |
- name: Upload Refcard | |
id: upload-pdf-refcard | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: dist/refcard.pdf | |
asset_name: refcard.pdf | |
asset_content_type: application/pdf |