Skip to content

feat: add github action to sign installer #127

feat: add github action to sign installer

feat: add github action to sign installer #127

Workflow file for this run

name: Build
on:
push:
branches: ['**']
# prevent duplicate runs on the same branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
publish:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Check out code
uses: actions/checkout@v6
with:
submodules: true # needed for libpretixsync and libpretixprint
- name: Set up JDK 23
uses: actions/setup-java@v5
with:
java-version: "23"
distribution: "temurin"
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v6
- name: Gradle build
working-directory: ./pretixscan
run: ./gradlew :composeApp:build