Update WENI-CHANGELOG version to 3.13.4 (#400) #620
Workflow file for this run
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: Build Flows in Shared (Push Tag) | |
on: | |
push: | |
tags: | |
- '*.*.*-develop' | |
- '*.*.*-staging' | |
- '*.*.*' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
if: github.event_name != 'pull_request' | |
with: | |
ref: "${{env.GITHUB_SHA}}" | |
token: ${{ secrets.DEVOPS_GITHUB_PERMANENT_TOKEN }} | |
#- name: Docker meta | |
# id: meta | |
# uses: docker/metadata-action@v5 | |
# with: | |
# images: push-backend | |
# tags: | | |
# type=semver,pattern={{version}}-develop | |
# type=semver,pattern={{version}}-staging | |
# type=semver,pattern={{version}} | |
- name: Set variables | |
run: | | |
TAG="$( echo "${GITHUB_REF}" | cut -d'/' -f3 )" | |
if grep -qs -e '^.*.*-develop' <<< "${TAG}" ; then | |
echo "Found environment: DEVELOP - ${TAG}" | |
echo "MANIFESTS_ENVIRONMENT=develop" | tee -a "${GITHUB_ENV}" | |
elif grep -qs -e '^.*.*-staging' <<< "${TAG}" ; then | |
echo "Found environment: STAGING - ${TAG}" | |
echo "MANIFESTS_ENVIRONMENT=staging" | tee -a "${GITHUB_ENV}" | |
elif grep -qs -e '^.*.*' <<< "${TAG}" ; then | |
echo "No environment found, assuming: PRODUCTION - ${TAG}" | |
echo "MANIFESTS_ENVIRONMENT=production" | tee -a "${GITHUB_ENV}" | |
else | |
echo 'Not a valid tag. Skipping...' | |
exit 1 | |
fi | |
echo "TAG=$TAG" | tee -a "${GITHUB_ENV}" | |
VERSION="${TAG}" | |
echo "VERSION=${VERSION}" | tee -a "${GITHUB_ENV}" | |
echo "COMMIT_SHA=$GITHUB_SHA" | tee -a "${GITHUB_ENV}" | |
echo "IMAGE_TAG=${{ secrets.ECR }}/push-backend:$TAG" | tee -a "${GITHUB_ENV}" | |
echo "IMAGE_SOURCE_URL=https://github.com/weni-ai/flows" | tee -a "${GITHUB_ENV}" | |
echo "MANIFESTS_REPOSITORY=weni-ai/kubernetes-manifests-platform" | tee -a "${GITHUB_ENV}" | |
echo "MANIFESTS_APPLICATION=weni-flows/flows" | tee -a "${GITHUB_ENV}" | |
echo "MANIFESTS_PATCH_TARGET=deployment-flows-image.json" | tee -a "${GITHUB_ENV}" | |
FLOWEDITOR_VERSION=$(jq -r '.dependencies["@nyaruka/flow-editor"]' < package.json) | |
echo "FLOWEDITOR_VERSION=${FLOWEDITOR_VERSION}" | tee -a "${GITHUB_ENV}" | |
echo "FLOWEDITOR_REPO=https://github.com/ilhasoft/floweditor" | tee -a "${GITHUB_ENV}" | |
FLOWEDITOR_BRANCH=$(jq -r '.weni["floweditor-branch"]' < package.json) | |
if [[ null == "${FLOWEDITOR_BRANCH}" ]]; then | |
FLOWEDITOR_BRANCH="main" | |
fi | |
echo "FLOWEDITOR_BRANCH=$FLOWEDITOR_BRANCH" | tee -a "${GITHUB_ENV}" | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to ECR | |
uses: docker/login-action@v3 | |
if: github.event_name != 'pull_request' | |
with: | |
registry: ${{ secrets.ECR }} | |
username: ${{ secrets.AWS_ACCESS_KEY_ID_SHARED }} | |
password: ${{ secrets.AWS_SECRET_ACCESS_KEY_SHARED }} | |
# Cache | |
- name: Cache var-cache-apt | |
uses: actions/cache@v3 | |
with: | |
path: var-cache-apt | |
key: var-cache-apt-${{ hashFiles('docker/Dockerfile') }} | |
- name: Cache var-lib-apt | |
uses: actions/cache@v3 | |
with: | |
path: var-lib-apt | |
key: var-lib-apt-${{ hashFiles('docker/Dockerfile') }} | |
- name: Cache pip | |
uses: actions/cache@v3 | |
with: | |
path: cache-pip | |
key: cache-pip-${{ hashFiles('docker/Dockerfile') }} | |
- name: Cache npm | |
uses: actions/cache@v3 | |
with: | |
path: cache-npm | |
key: cache-npm-${{ hashFiles('docker/Dockerfile') }} | |
# Inject cache | |
- name: inject var-cache-apt into docker | |
uses: reproducible-containers/buildkit-cache-dance@v2.1.3 | |
with: | |
cache-source: var-cache-apt | |
cache-target: /var/cache/apt | |
- name: inject var-lib-apt into docker | |
uses: reproducible-containers/buildkit-cache-dance@v2.1.3 | |
with: | |
cache-source: var-lib-apt | |
cache-target: /var/lib/apt | |
- name: inject pip cache into docker | |
uses: reproducible-containers/buildkit-cache-dance@v2.1.3 | |
with: | |
cache-source: cache-pip | |
cache-target: /pip_cache | |
- name: inject npm cache into docker | |
uses: reproducible-containers/buildkit-cache-dance@v2.1.3 | |
with: | |
cache-source: cache-npm | |
cache-target: /npm_cache | |
- name: Build and push - Flows Image | |
uses: docker/build-push-action@v5 | |
with: | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
context: . | |
labels: | | |
tag=${{env.TAG}} | |
commit=${{env.COMMIT_SHA}} | |
repository=${{env.IMAGE_SOURCE_URL}} | |
file: docker/Dockerfile | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: "${{env.IMAGE_TAG}}" | |
#tags: ${{ steps.meta.outputs.tags }} | |
platforms: linux/amd64,linux/arm64 | |
#platforms: linux/amd64,linux/arm64,linux/arm/v7,darwin/amd64,linux/arm/v8 | |
#no-cache: true | |
build-args: | | |
FLOWEDITOR_VERSION=${{ env.FLOWEDITOR_VERSION }} | |
FLOWEDITOR_REPO=${{ env.FLOWEDITOR_REPO }} | |
FLOWEDITOR_BRANCH=${{ env.FLOWEDITOR_BRANCH }} | |
- name: Check out Kubernetes Manifests | |
uses: actions/checkout@master | |
with: | |
ref: main | |
#ref: feature/flows-cache | |
repository: "${{ env.MANIFESTS_REPOSITORY }}" | |
token: "${{ secrets.DEVOPS_GITHUB_PERMANENT_TOKEN }}" | |
path: ./kubernetes-manifests/ | |
- name: Update image on deployment | |
run: | | |
which jq > /dev/null 2>&1 || ( sudo apt update ; sudo apt install -y jq ) | |
# Dep: coreutils | |
verlte() { | |
[ "$1" = "`echo -e "$1\n$2" | sort -V | head -n1`" ] | |
} | |
verlt(){ | |
[ "$1" = "$2" ] && return 1 || verlte $1 $2 | |
} | |
export PROJECT_DIR="${{ env.MANIFESTS_APPLICATION }}" | |
ENV_DIR="kubernetes-manifests/${{ env.MANIFESTS_APPLICATION }}/${MANIFESTS_ENVIRONMENT}" | |
for e in ${ENV_DIR}; do | |
echo "Update ${e}:" | |
if [ ! -d "${e}" ] ; then | |
echo "${e}: Does not exist, skipping" | |
elif [ ! -r "${e}/kustomization.yaml" ] ; then | |
echo "${e}/kustomization.yaml: Does not readable, skipping" | |
elif [ ! -r "${e}/${{ env.MANIFESTS_PATCH_TARGET }}" ] ; then | |
echo "${e}/${{ env.MANIFESTS_PATCH_TARGET }}: Does not readable, skipping" | |
else | |
OLD_IMAGE=$( | |
cat "${e}/${{ env.MANIFESTS_PATCH_TARGET }}" \ | |
| jq '.[] | select(.path == "/spec/template/spec/containers/0/image") | .value' | |
) | |
echo "Old image to replace: ${OLD_IMAGE}" | |
OLD_VERSION=$( | |
echo "${OLD_IMAGE}" \ | |
| sed s'/^.*[v:]\([0-9]*\.[0-9]*\.[0-9]*\).*$/\1/'g \ | |
| head -n1 | |
) | |
echo "Old image version to compare: ${OLD_VERSION}<=${{env.VERSION}}" | |
if verlte "${OLD_VERSION}" "${VERSION}" || [[ ! "${OLD_VERSION}" =~ [0-9]+\.[0-9]+\.[0-9]+ ]] ; then | |
echo 'New configurations for image flows:' | |
new_configuration=$( | |
cat "${e}/${{ env.MANIFESTS_PATCH_TARGET }}" \ | |
| jq '(..|select(.path == "/spec/template/spec/containers/0/image")?) += {value: "'"${{env.IMAGE_TAG}}"'"}' | |
) | |
echo "${new_configuration}" | |
echo "${new_configuration}" > "${e}/${{ env.MANIFESTS_PATCH_TARGET }}" | |
else | |
echo "Version in file is greater than build, skipping update yaml" | |
fi | |
fi | |
done | |
- name: Commit & Push changes | |
uses: actions-js/push@master | |
with: | |
github_token: "${{ secrets.DEVOPS_GITHUB_PERMANENT_TOKEN }}" | |
repository: "${{ env.MANIFESTS_REPOSITORY }}" | |
directory: ./kubernetes-manifests/ | |
branch: main | |
#branch: feature/flows-cache | |
message: "From Flows Build (Push Tag ${{ env.MANIFESTS_ENVIRONMENT }})" |