Merge pull request #4861 from bcgov/dev-shiva-4707-marshal #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Notification Manager CD | |
on: | |
push: | |
branches: | |
- dev | |
- dev-marshal | |
- test-marshal | |
- main | |
paths: | |
- "notification-manager/**" | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./notification-manager | |
env: | |
APP_NAME: "notification-manager" | |
jobs: | |
notification-manager-cd-by-push: | |
runs-on: ubuntu-20.04 | |
if: github.event_name == 'push' && github.repository == 'bcgov/foi-flow' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set ENV variables | |
id: set-variable | |
run: | | |
if [ ${{ github.ref_name }} == 'dev' ]; then | |
echo "For ${{ github.ref_name }} branch" | |
echo "TOOLS_NAME=${{secrets.OPENSHIFT4_FRONTEND_REPOSITORY}}" >> $GITHUB_ENV | |
echo "TAG_NAME="dev"" >> $GITHUB_ENV | |
echo "BRANCH_NAME="dev"" >> $GITHUB_ENV | |
echo "ENV_NAME="dev"" >> $GITHUB_ENV | |
elif [ ${{ github.ref_name }} == 'dev-marshal' ]; then | |
echo "For ${{ github.ref_name }} branch" | |
echo "TOOLS_NAME=${{secrets.OPENSHIFT4_FRONTEND_REPOSITORY}}" >> $GITHUB_ENV | |
echo "TAG_NAME="dev-marshal"" >> $GITHUB_ENV | |
echo "BRANCH_NAME="dev-marshal"" >> $GITHUB_ENV | |
echo "ENV_NAME="dev"" >> $GITHUB_ENV | |
elif [ ${{ github.ref_name }} == 'test-marshal' ]; then | |
echo "For ${{ github.ref_name }} branch" | |
echo "TOOLS_NAME=${{secrets.OPENSHIFT4_FRONTEND_REPOSITORY}}" >> $GITHUB_ENV | |
echo "TAG_NAME="test-marshal"" >> $GITHUB_ENV | |
echo "BRANCH_NAME="test-marshal"" >> $GITHUB_ENV | |
echo "ENV_NAME="test"" >> $GITHUB_ENV | |
elif [ ${{ github.ref_name }} == 'main' ]; then | |
echo "For ${{ github.ref_name }} branch" | |
echo "TOOLS_NAME=${{secrets.OPENSHIFT4_FRONTEND_REPOSITORY}}" >> $GITHUB_ENV | |
echo "TAG_NAME="test"" >> $GITHUB_ENV | |
echo "BRANCH_NAME="main"" >> $GITHUB_ENV | |
echo "ENV_NAME="test"" >> $GITHUB_ENV | |
else | |
echo "For ${{ github.ref_name }} branch" | |
fi | |
shell: bash | |
- name: Login Openshift | |
shell: bash | |
run: | | |
oc login --server=${{secrets.OPENSHIFT4_LOGIN_REGISTRY}} --token=${{secrets.OPENSHIFT4_SA_TOKEN}} | |
- name: Tools project | |
shell: bash | |
run: | | |
oc project ${{ env.TOOLS_NAME }}-tools | |
- name: Build from ${{ env.BRANCH_NAME }} branch | |
shell: bash | |
run: | | |
oc patch bc/${{ env.APP_NAME }}-build -p '{"spec":{"source":{"git":{"ref":"${{ env.BRANCH_NAME }}"}}}}' | |
- name: Start Build Openshift | |
shell: bash | |
run: | | |
oc start-build ${{ env.APP_NAME }}-build --wait | |
- name: Tag+Deploy for ${{ env.TAG_NAME }} | |
shell: bash | |
run: | | |
oc tag ${{ env.APP_NAME }}:latest ${{ env.APP_NAME }}:${{ env.TAG_NAME }} |