diff --git a/.forgejo/workflows/build_linux.yaml b/.forgejo/workflows/build_linux.yaml index c13ca22..32456ee 100644 --- a/.forgejo/workflows/build_linux.yaml +++ b/.forgejo/workflows/build_linux.yaml @@ -1,10 +1,19 @@ name: Build for Linux - +env: + BUILD_DEPS: git nim nimble on: [push] jobs: test-build: runs-on: docker steps: - - name: Checkouter - uses: pswilde/norgbackup + - name: Install Dependencies + run: | + apt update && apt install --yes $BUILD_DEPS + - name: Clone repo + run: | + git clone ${{ github.ref_name }} ${{ github.server_url }}/${{ github.repository }} + - name: Build + run: | + cd app + nimble build --release