Skip to content

Feat/ibc tao ( staging ) (#308) #344

Feat/ibc tao ( staging ) (#308)

Feat/ibc tao ( staging ) (#308) #344

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [develop, staging]
jobs:
lint:
uses: ./.github/workflows/lint.yml
secrets: inherit
test:
uses: ./.github/workflows/test.yml
secrets: inherit
build:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Set environment variable
run: |
SHORT_SHA_COMMIT=$(git rev-parse --short HEAD)
echo CONTAINER_RELEASE_IMAGE=ghcr.io/aura-nw/erascope:${GITHUB_REF_NAME}_${SHORT_SHA_COMMIT} >> $GITHUB_ENV
- name: Build the Docker image and push it to the registry
env:
GITHUB_USERNAME: ${{ github.actor }}
GITHUB_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.KEY_NPM_RC }}
run: |
./ci/build.sh
updateManifest:
runs-on: [ubuntu-latest]
needs: [lint, test, build]
steps:
- uses: actions/checkout@v3
- uses: imranismail/setup-kustomize@v2
- name: Set environment variable
run: |
SHORT_SHA_COMMIT=$(git rev-parse --short HEAD)
echo CONTAINER_RELEASE_IMAGE=ghcr.io/aura-nw/erascope:${GITHUB_REF_NAME}_${SHORT_SHA_COMMIT} >> $GITHUB_ENV
echo REPO_MANIFEST_NAME=gitops >> $GITHUB_ENV
echo REPO_MANIFEST_URL=github.com/aura-nw/gitops.git >> $GITHUB_ENV
echo REPO_MANIFEST_BRANCH=master >> $GITHUB_ENV
echo REPO_MANIFEST_ENV_DEV=./clusters/k8s-dev/horoscope-v2/horoscope-crawl-auratestnet >> $GITHUB_ENV
echo REPO_MANIFEST_ENV_STAGING=./clusters/k8s-testnet-euphoria/horoscope-v2/horoscope-crawl-euphoria >> $GITHUB_ENV
echo REPO_MANIFEST_ENV_MAIN=./clusters/k8s-prod/horoscope-v2/horoscope-crawl-xstaxy >> $GITHUB_ENV
echo REPO_MANIFEST_TAG_IMAGE=image_erascope >> $GITHUB_ENV
- name: Update manifest
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.REGISTRY_PASSWORD }}
run: |
./ci/updateManifest.sh