2024-01-31 23:13:22 +03:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
push:
|
|
|
|
branches:
|
2024-02-02 13:27:57 +03:00
|
|
|
- 'master'
|
2024-01-31 23:13:22 +03:00
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
container:
|
|
|
|
- archlinux:latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: ${{ matrix.container }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Build
|
2024-02-01 18:40:07 +03:00
|
|
|
run: sh ./.github/workflows/build.sh
|
2024-01-31 23:13:22 +03:00
|
|
|
|
2024-02-02 13:27:57 +03:00
|
|
|
- name: Upload Arch artifact
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
path: ./dist/*.pkg.tar.zst
|
|
|
|
name: arch-packages
|
|
|
|
|
|
|
|
- name: Upload Deb artifact
|
2024-01-31 23:13:22 +03:00
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
2024-02-02 13:27:57 +03:00
|
|
|
path: ./dist/*.deb
|
|
|
|
name: deb-packages
|
|
|
|
|
2024-02-01 00:07:07 +03:00
|
|
|
nix-build:
|
|
|
|
runs-on: ubuntu-latest
|
2024-02-01 20:28:35 +03:00
|
|
|
env:
|
|
|
|
NIXPKGS_ALLOW_UNFREE: 1
|
2024-02-01 00:07:07 +03:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Install nix
|
|
|
|
uses: cachix/install-nix-action@v22
|
|
|
|
|
|
|
|
- name: Build
|
2024-02-02 13:27:57 +03:00
|
|
|
run: sh ./.github/workflows/build.sh
|
2024-02-01 00:07:07 +03:00
|
|
|
|
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
2024-02-02 13:27:57 +03:00
|
|
|
path: ./result/*
|
|
|
|
name: nix-package
|