From 0e4fba51e09795590b0dc18ef3d63ae8bf9a3198 Mon Sep 17 00:00:00 2001 From: Nedelcho Delchev Date: Wed, 28 Jul 2021 16:43:50 +0300 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7983643fc81..7a323f066d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -182,6 +182,7 @@ jobs: zip --junk-paths sap-cf-all releng/sap-cf-all/target/ROOT.war zip --junk-paths sap-cf-runtime releng/sap-cf-runtime/target/ROOT.war zip --junk-paths server-all releng/server-all/target/ROOT.war + zip --junk-paths server-minimal releng/server-minimal/target/ROOT.war zip --junk-paths server-oauth releng/server-oauth/target/ROOT.war zip --junk-paths server-runtime releng/server-runtime/target/ROOT.war zip --junk-paths trial-all releng/trial-all/target/ROOT.war @@ -259,6 +260,7 @@ jobs: #### Available for download `*.war` packages: - _**[server-all](https://github.com/eclipse/dirigible/releases/download/v${{ env.DIRIGIBLE_VERSION }}/server-all.zip) - Basic package - recommended for local test & development.**_ + - [server-minimal](https://github.com/eclipse/dirigible/releases/download/v${{ env.DIRIGIBLE_VERSION }}/server-minimal.zip) - Minimal package still containing the WebIDE. - [anonymous-all](https://github.com/eclipse/dirigible/releases/download/v${{ env.DIRIGIBLE_VERSION }}/anonymous-all.zip) - Anonymous access. - [anonymous-runtime](https://github.com/eclipse/dirigible/releases/download/v${{ env.DIRIGIBLE_VERSION }}/anonymous-runtime.zip) - Anonymous access _(runtime only)_. - [sap-cf-all](https://github.com/eclipse/dirigible/releases/download/v${{ env.DIRIGIBLE_VERSION }}/sap-cf-all.zip) - SAP Cloud Platform - Cloud Foundry environment. @@ -335,6 +337,16 @@ jobs: asset_path: ./server-all.zip asset_name: server-all.zip asset_content_type: application/zip + - name: Upload server-minimal + id: upload-server-minimal + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./server-minimal.zip + asset_name: server-minimal.zip + asset_content_type: application/zip - name: Upload server-oauth id: upload-server-oauth uses: actions/upload-release-asset@v1