CSV file writing and event links fix #4
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 | |
jobs: | |
maven: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup JDK | |
uses: actions/[email protected] | |
with: | |
java-version: 21 | |
distribution: adopt | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Clone dvbinspector repo | |
run: git clone --depth 1 https://github.com/EricBerendsen/dvbinspector | |
- name: Build dvbinspector | |
run: | | |
cd dvbinspector | |
mvn install | |
cd .. | |
- name: Build EPG reader | |
run: mvn package | |
- name: Upload build artifact | |
uses: actions/[email protected] | |
with: | |
name: ts-epg-reader | |
path: target/ts*.jar |