mirror of
https://github.com/X11Libre/xf86-input-mouse.git
synced 2026-03-24 01:24:06 +00:00
Using the new driver build actions in X11Libre/actions-build-driver repo, instead of having lots of duplicated pipeline and script in all the individual driver repos. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
28 lines
754 B
YAML
28 lines
754 B
YAML
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
target-ubuntu:
|
|
strategy:
|
|
matrix:
|
|
xserver-version: [ master, xlibre-xserver-25.1.0, xlibre-xserver-25.0.0.18 ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: X11Libre/action-build-driver/target/ubuntu@v0.0.1
|
|
with:
|
|
xserver-version: ${{ matrix.xserver-version }}
|
|
|
|
release-notes:
|
|
name: Release pushed tag
|
|
runs-on: ubuntu-latest
|
|
if: ${{ startsWith(github.ref, 'refs/tags/xlibre-') }}
|
|
needs: target-ubuntu
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- uses: X11Libre/action-build-driver/release@v0.0.1
|