diff options
-rw-r--r-- | .github/workflows/installers.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index c7b27645f..ad513df8d 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -66,3 +66,19 @@ jobs: # path: ejabberd-packages* retention-days: 14 + + release: + name: Release + needs: [binaries] + runs-on: ubuntu-latest + if: github.ref_type == 'tag' + steps: + - name: Download packages + uses: actions/download-artifact@v3 + with: + name: ejabberd-packages + - name: Draft Release + uses: softprops/action-gh-release@v1 + with: + draft: true + files: ejabberd-packages/* |