diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..5c8458e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,26 @@ +name: lootinator-release-builds + +on: [push] + +jobs: + linux: + name: build/release/linux + runs-on: [ubuntu-latest] + steps: + - uses: actions/checkout@v4 + + - name: setup + run: | + sudo apt update + sudo apt install build-essentials + + - name: build + mkdir build && cd build && cmake .. + make -B -j8 + + - uses: actions/upload-artifact@v4 + with: + name: lootinator-cli-linux + path: ./${{ github.event.repository.name }}/build/cli/lootinator-cli + +