Merge pull request #8 from aura-nw/chore/add-config-mappings #45
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: Continuous integration | |
on: | |
push: | |
branches: [develop, serenity, euphoria] | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# npm build | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Setup yarn | |
run: npm install -g yarn | |
- name: Install dependencies | |
run: yarn install | |
- run: yarn build | |
# docker build | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set environment variable | |
run: | | |
SHORT_SHA_COMMIT=$(git rev-parse --short HEAD) | |
echo CONTAINER_RELEASE_IMAGE=ghcr.io/aura-nw/ipscan-be:${GITHUB_REF_NAME}_${SHORT_SHA_COMMIT} >> $GITHUB_ENV | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
push: true | |
tags: | | |
${{ env.CONTAINER_RELEASE_IMAGE }} | |
update-manifest: | |
needs: build-and-push | |
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/ipscan-be:${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=main >> $GITHUB_ENV | |
echo REPO_MANIFEST_ENV_DEV=./clusters/k8s-dev/ipscan >> $GITHUB_ENV | |
echo REPO_MANIFEST_ENV_EUPHORIA=./clusters/k8s-testnet-euphoria/ipscan >> $GITHUB_ENV | |
echo REPO_MANIFEST_ENV_SERENITY=./clusters/k8s-testnet-serenity/ipscan >> $GITHUB_ENV | |
echo REPO_MANIFEST_TAG_IMAGE=image_ipscan_be >> $GITHUB_ENV | |
- name: Update manifest | |
env: | |
PERSONAL_ACCESS_TOKEN: ${{ secrets.REGISTRY_PASSWORD }} | |
run: | | |
chmod 777 -R ./ci | |
./ci/updateManifest.sh |