Skip to content

Commit

Permalink
Release 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
moabu committed Sep 15, 2020
1 parent b296d79 commit aca1d58
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 25 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
cp -r . /home/runner/work/test/
cd /home/runner/work/test/
make zipapp
make guizipapp
- name: Get version
id: get_version
Expand Down Expand Up @@ -106,3 +108,14 @@ jobs:
asset_path: /home/runner/work/test/pygluu-kubernetes.pyz
asset_name: pygluu-kubernetes-linux.pyz
asset_content_type: application/pyz

- name: Upload GUI Release Asset
id: upload-gui-release-asset
uses: actions/upload-release-asset@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: /home/runner/work/test/pygluu-kubernetes-gui.pyz
asset_name: pygluu-kubernetes-linux-gui-alpha.pyz
asset_content_type: application/pyz
4 changes: 2 additions & 2 deletions pygluu/kubernetes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
https://www.apache.org/licenses/LICENSE-2.0
"""

__version__ = "1.2.5-alpha"
__previous_version__ = "1.2.4"
__version__ = "1.2.5"
__previous_version__ = "1.2.5-alpha"
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ maintainers:
email: [email protected]
description: Helm chart for gluu-gateway-ui service
name: gluu-gateway-ui
version: 1.0.5
version: 1.2.5
2 changes: 1 addition & 1 deletion pygluu/kubernetes/templates/helm/gluu-upgrade/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: gluu-upgrade
description: A Helm chart for upgrading gluu server
type: application
version: 1.0.5
version: 1.2.5
appVersion: 4.2.0_01
maintainers:
- name: Gluu
Expand Down
36 changes: 18 additions & 18 deletions pygluu/kubernetes/templates/helm/gluu/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,72 +8,72 @@ maintainers:
email: [email protected]
description: A Helm chart for Gluu IDP
name: gluu
version: 1.0.5
version: 1.2.5
dependencies:
- name: config
condition: global.config.enabled
version: 1.0.5
version: 1.2.5

- name: opendj
condition: global.opendj.enabled
version: 1.0.5
version: 1.2.5

- name: jackrabbit
condition: global.jackrabbit.enabled
version: 1.0.5
version: 1.2.5

- name: oxauth
condition: global.oxauth.enabled
version: 1.0.5
version: 1.2.5

- name: fido2
condition: global.fido2.enabled
version: 1.0.5
version: 1.2.5

- name: scim
condition: global.scim.enabled
version: 1.0.5
version: 1.2.5

- name: oxtrust
condition: global.oxtrust.enabled
version: 1.0.5
version: 1.2.5

- name: nginx-ingress
condition: global.nginx-ingress.enabled
version: 1.0.5
version: 1.2.5

- name: oxshibboleth
condition: global.oxshibboleth.enabled
version: 1.0.5
version: 1.2.5

- name: oxpassport
version: 1.0.5
version: 1.2.5
condition: config.configmap.gluuPassportEnabled

- name: casa
version: 1.0.5
version: 1.2.5
condition: config.configmap.gluuCasaEnabled

- name: oxauth-key-rotation
condition: global.oxauth-key-rotation.enabled
version: 1.0.5
version: 1.2.5

- name: cr-rotate
version: 1.0.5
version: 1.2.5
condition: global.cr-rotate.enabled

- name: radius
condition: config.configmap.gluuRadiusEnabled
version: 1.0.5
version: 1.2.5

- name: oxd-server
condition: global.oxd-server.enabled
version: 1.0.5
version: 1.2.5

- name: persistence
condition: global.persistence.enabled
version: 1.0.5
version: 1.2.5

- name: gluu-istio-ingress
condition: global.istio.ingress
version: 1.0.5
version: 1.2.5
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apiVersion: v1
appVersion: "4.2.0_01"
description: A Helm chart for casa
name: casa
version: 1.0.5
version: 1.2.5
maintainers:
- name: Gluu
home: https://gluu.org/docs/casa/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: gluu-istio-ingress
description: Istio ingress integration files
type: application
version: 1.0.5
version: 1.2.5
appVersion: 4.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ maintainers:
email: [email protected]
description: Helm chart for SCIM
name: scim
version: 1.0.5
version: 1.2.5

0 comments on commit aca1d58

Please sign in to comment.