0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2025-04-20 07:33:44 +03:00
yandex-music-linux/.github/workflows/build.yml
Yury Shvedov 3886843761 Add fixes to nix workflow
Previous workflow actually did not check nix build.

Change-Id: I4a9fc3c8a7fcf17aec1328fcc5f340061ac86468
2024-02-04 13:05:12 +03:00

69 lines
1.5 KiB
YAML

name: Build
on:
workflow_call:
inputs:
ref:
default: ''
required: false
type: string
pull_request:
branches:
- '*'
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
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: cachix/cachix-action@v12
with:
name: yandexmisic
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build yandexmusic
run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure .#yandexmusic
- name: Build yandexmusic background
run: NIXPKGS_ALLOW_UNFREE=1 nix build --impure .#yandexmusic-background