Skip to content

Update workflows

Update workflows #1

Workflow file for this run

name: Build branches
on:
push:
branches: [ main, dev ]
workflow_dispatch:
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
jar:
uses: ./.github/workflows/build-jar.yml
with:
jar-name: tp2intervals
jar-artifact-name: tp2intervals-jar
docker-image:
needs:
- jar
uses: ./.github/workflows/build-docker-image.yml
with:
jar-name: tp2intervals
jar-artifact-name: tp2intervals-jar
image-name: tp2intervals
electron:
strategy:
matrix:
environment:
- os: ubuntu-latest
- os: macos-latest
- os: windows-latest
uses: ./.github/workflows/build-electron.yml
with:
os: ${{ matrix.environment.os }}