Skip to content

.github/workflows/ci.yml #34

.github/workflows/ci.yml

.github/workflows/ci.yml #34

Workflow file for this run

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: work around permission issue
run: git config --global --add safe.directory /srv
- name: Create revision
run: make revision.tex
- name: Build docker images
run: docker build . -t local -f .devcontainer/Dockerfile
- 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