0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-23 22:22:59 +03:00
yandex-music-linux/.github/workflows/build.yml
Andrey Onishchenko 9b3eec27a8 CI for dev branch
2024-02-23 18:59:54 +03:00

75 lines
1.6 KiB
YAML

name: Build
on:
workflow_call:
inputs:
ref:
default: ''
required: false
type: string
pull_request:
branches:
- '*'
push:
branches:
- 'dev'
jobs:
build:
runs-on: ubuntu-latest
container:
image: archlinux:latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ (inputs.ref || '') }}
- name: Build
run: sh ./.github/workflows/build.sh
- name: Upload Arch artifact
uses: actions/upload-artifact@v4
with:
path: ./dist/*.pkg.tar.zst
name: arch-packages
- name: Upload Deb artifact
uses: actions/upload-artifact@v4
with:
path: ./dist/*.deb
name: deb-packages
- name: Upload Asar artifacts
uses: actions/upload-artifact@v4
with:
path: ./dist/*.asar
name: asar-packages
- name: Upload Release Notes
uses: actions/upload-artifact@v4
with:
path: ./dist/release_notes.json
nix-build:
runs-on: ubuntu-latest
env:
NIXPKGS_ALLOW_UNFREE: 1
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ (inputs.ref || '') }}
- name: Install nix
uses: cachix/install-nix-action@v22
- uses: DeterminateSystems/magic-nix-cache-action@v2
- name: Build yandex-music
run: nix build --impure .#yandex-music
- name: Build yandex-music without flakes binaries
run: nix build --impure .#yandex-music-noflakes