diff options
author | tzlil <tzlils@protonmail.com> | 2023-02-17 13:25:23 +0200 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-02-17 13:25:23 +0200 |
commit | dd95456ec490d9119274f31e2f4fc4d1679477fc (patch) | |
tree | 77c85ed94970517f4ba0bf33bbed0c9e4a7785af /.github/workflows |
initial commit
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build_nix.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/build_nix.yml b/.github/workflows/build_nix.yml new file mode 100644 index 0000000..2f684e1 --- /dev/null +++ b/.github/workflows/build_nix.yml @@ -0,0 +1,13 @@ +name: "Build legacy Nix package on Ubuntu" + +on: + push: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: cachix/install-nix-action@v12 + - name: Building package + run: nix-build . -A defaultPackage.x86_64-linux |