diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 33f9fcf1..0922df04 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -4,13 +4,11 @@ name: CI on: push: - branches: - - master tags: - v* jobs: - build: + BuildBinaries: name: Build application packages strategy: matrix: @@ -61,3 +59,16 @@ jobs: with: name: runner-package-${{ matrix.runtime }} path: build/compose + ReleaseBinaries: + name: Make a release + needs: [BuildBinaries] + runs-on: ubuntu-latest + steps: + - name: Download Build Artifacts + uses: actions/download-artifact@v2 + + - uses: ncipollo/release-action@v1 + with: + artifacts: "*/binaries/*.*,*/jars/*.*" + draft: true + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file