Skip to content

Commit eb67568

Browse files
committed
Build with GitHub workflows instead
1 parent 34e03c7 commit eb67568

File tree

5 files changed

+24
-176
lines changed

5 files changed

+24
-176
lines changed

.editorconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ fsharp_max_value_binding_width=80
2323
fsharp_blank_lines_around_nested_multiline_expressions=false
2424
fsharp_space_before_colon=true
2525

26-
[*.nix]
26+
[*.yml]
27+
indent_style = space
2728
indent_size = 2

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Java CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
name: Build
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: 📥 Clone
12+
uses: actions/checkout@v4
13+
14+
- name: ⚒️ Build
15+
run: dotnet publish -c Release --self-contained true -r linux-x64
16+
17+
- name: 📤 Upload Build
18+
uses: actions/upload-artifact@v4
19+
with:
20+
name: Binaries
21+
path: ./bin/Release/net*/linux-x64/publish
22+
retention-days: 1

deps.nix

Lines changed: 0 additions & 67 deletions
This file was deleted.

flake.lock

Lines changed: 0 additions & 61 deletions
This file was deleted.

flake.nix

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)