Fernmeldewesen, Maßnahmen, Schadenskonten #36
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: Continious Integration | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies (Packages) | |
run: sudo apt-get update && sudo apt-get install -y inkscape optipng python3-pip fonts-roboto-slab | |
- name: Install dependencies (Python) | |
run: sudo pip3 install j2cli | |
- name: Create SVGs | |
run: make -j8 svg | |
- name: Create PNGs | |
run: make -j8 png | |
- name: Create Print-SVGs | |
run: make -j8 print | |
- name: Create Print-PNGs | |
run: make -j8 png_print | |
- name: Create Package | |
run: make -j8 ci | |
- name: Create Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: release-zip | |
path: release.zip |