WIP CI
Some checks failed
/ build (push) Failing after 1m21s

This commit is contained in:
Simon Bruder 2024-06-02 17:39:47 +02:00
parent f9dc124572
commit 8542764f55
Signed by: simon
GPG key ID: 347FF8699CDA0776
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,22 @@
on: [push]
jobs:
build:
runs-on: docker
steps:
- name: Set up dependencies
run: |
apt-get update
apt-get -y install sudo
- name: Install Nix
uses: https://github.com/cachix/install-nix-action@v27
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: nix build -L
- name: Archive
run: tar --zstd --transform 's/^result/password-hash-self-service/' -cvf password-hash-self-service.tar.zstd result/*
- name: Upload
uses: actions/upload-artifact@v3
with:
name: password-hash-self-service.tar.zstd
path: password-hash-self-service.tar.zstd

Binary file not shown.