umu_run: do not force the runtime for winetricks if UMU_NO_RUNTIME
is set
#199
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: UMU Nix Flake Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# TODO: setup binary cache | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install nix | |
uses: cachix/install-nix-action@v30 | |
with: | |
github_access_token: ${{ github.token }} | |
- name: Check flake inputs | |
uses: DeterminateSystems/flake-checker-action@v9 | |
with: | |
flake-lock-path: packaging/nix/flake.lock | |
- name: Check flake outputs | |
run: nix flake check ./packaging/nix | |
- name: Build | |
run: nix build ./packaging/nix | |