diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0ffb77f..1dd448b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,3 +19,21 @@ jobs: - uses: actions/checkout@v6 - name: Build run: nix run -L ".#${{ matrix.arch }}" + - name: Upload artifact + uses: actions/upload-artifact@v7 + with: + name: ${{ matrix.arch }} + path: "*.zip" + + release: + needs: build + runs-on: nix-latest + if: github.ref == 'refs/heads/main' + steps: + - name: Download artifacts + uses: actions/download-artifact@v8 + - name: Create release + uses: actions/gitea-release-action@v1 + with: + files: |- + "*.zip"