From 0e106ae34df12664b2276c4c79ab72a88dab3b8f Mon Sep 17 00:00:00 2001 From: Marius <120025370+mariunaise@users.noreply.github.com> Date: Tue, 3 Sep 2024 12:38:07 +0200 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..d999fb1 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,16 @@ +name: "Build" +on: + pull_request: + push: +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: cachix/install-nix-action@v27 + - run: nix build + - run: cp result HDA-Thesis.pdf + - uses: actions/upload-artifact@v4 + with: + name: HDA-thesis + path: HDA-thesis.pdf