Skip to content

Increase be appVersion to 1.17 #921

Increase be appVersion to 1.17

Increase be appVersion to 1.17 #921

Workflow file for this run

name: scicat-fe
on:
workflow_dispatch:
inputs:
submodule_commit:
description: 'Commit of the submodule to deploy'
required: false
commit:
description: 'Commit of the CI repo to deploy'
required: false
pull_request:
branches: [ main ]
push:
branches: [ main ]
release:
types: [ published ]
jobs:
set_env:
uses: ./.github/workflows/reusable.environment.yml
with:
commit: ${{ github.event.inputs.commit }}
submodule_commit: ${{ github.event.inputs.submodule_commit }}
check_changed:
needs: set_env
uses: ./.github/workflows/reusable.changes.yml
with:
files: |
.github/workflows/scicat-fe.yml
helm/configs/frontend/values.yaml
helm/configs/frontend/login.component.html
helm/configs/frontend/${{ needs.set_env.outputs.environment }}/**
frontend/**
commit: ${{ needs.set_env.outputs.commit }}
submodule_commit: ${{ github.event.inputs.submodule_commit }}
submodule: frontend
build_deploy_scicat_fe:
if: (needs.check_changed.outputs.changed == 'true' && !needs.set_env.outputs.component) || needs.set_env.outputs.component == 'fe'
needs:
- check_changed
- set_env
uses: ./.github/workflows/reusable.build-deploy.yml
with:
context: frontend/.
image_name: ${{ github.repository }}/fe
release_name: frontend
tag: ${{ needs.set_env.outputs.tag }}
environment: ${{ needs.set_env.outputs.environment }}
commit: ${{ needs.set_env.outputs.commit }}
submodule_commit: ${{ github.event.inputs.submodule_commit }}
submodule: frontend
helm_set_files: >-
KEYCLOAK_ICON=helm/configs/frontend/keycloak_icon_256px.svg
ENVIRONMENT=helm/configs/frontend/${{ needs.set_env.outputs.environment }}/config.json
secrets:
KUBECONFIG: ${{ secrets.KUBECONFIG }}
BASTION_USER: ${{ secrets.BASTION_USER }}
BASTION_SSH_KEY: ${{ secrets.BASTION_SSH_KEY }}