Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

chore(deps): bump kotlin.version from 1.9.23 to 1.9.24 #225

chore(deps): bump kotlin.version from 1.9.23 to 1.9.24

chore(deps): bump kotlin.version from 1.9.23 to 1.9.24 #225

Workflow file for this run

name: Build binaries
on:
push:
pull_request:
jobs:
build:
strategy:
fail-fast: false
matrix:
os:
- debian
- fedora
- osx
- windows
include:
- os: debian
runner: ubuntu-latest
cmd: mvn clean package -P deb
path: target/dist/*.deb
ext: deb
- os: fedora
runner: ubuntu-latest
cmd: mvn clean package -P rpm
path: target/rpm/librepass/RPMS/x86_64/*.rpm
ext: rpm
- os: osx
runner: macos-latest
cmd: mvn clean package -P mac
path: target/dist/*.dmg
ext: dmg
- os: windows
runner: windows-latest
cmd: mvn clean package -P nsis
path: target/dist/*.exe
ext: exe
name: ${{ matrix.os }}
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build
run: ${{ matrix.cmd }}
- name: Prepare artifact
run: mv ${{ matrix.path }} librepass.${{ matrix.ext }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: librepass-${{ matrix.os }}
path: ./librepass.${{ matrix.ext }}