CI: Fix path to src artifact #39
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
name: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
container: tumi5/latex | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Prepare system | |
run: | | |
apt-get update && apt-get install -y poppler-utils | |
pip install pandoc-fignos | |
- name: Build | |
run: | | |
cd fsi-workflow && make | |
- name: Upload tasks | |
uses: actions/upload-artifact@v4 | |
with: | |
name: precice-course-fsi-workflow-tasks | |
path: fsi-workflow/precice-course-fsi-workflow-tasks.pdf | |
if-no-files-found: error | |
- name: Prepare src archive | |
run: | | |
cd fsi-workflow && make clean && cd .. | |
tar -czf precice-course-fsi-workflow-src.tar.gz fsi-workflow | |
- name: Upload src archive | |
uses: actions/upload-artifact@v4 | |
with: | |
name: precice-course-fsi-workflow-src | |
path: precice-course-fsi-workflow-src.tar.gz | |
if-no-files-found: error |