Merge pull request #234 from winapps-org/feat-nix-packaging

Package WinApps (and the Launcher) with Nix
This commit is contained in:
Oskar Manhart
2024-11-01 13:23:36 +01:00
committed by GitHub
12 changed files with 580 additions and 0 deletions

19
.github/workflows/update-nix.yaml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: "Update Flake Packages"
on:
workflow_dispatch:
schedule:
- cron: "0 10 * * 0" # https://crontab.guru/#0_10_*_*_0
jobs:
updateFlakePackages:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v20
- name: Update flake packages
uses: selfuryon/nix-update-action@v1