Skip to content

update with bundler details #2

update with bundler details

update with bundler details #2

Workflow file for this run

---
# This workflow will build a docker image and deploy it to trustwallet stating \
# and production environments
# yamllint disable rule:line-length
name: Version_Release
on:
push:
tags:
- v0.**
jobs:
js_build_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# node-version: [14.x, 16.x, 18.x, 20.x]
# See supported Node.js release schedule at
# https://nodejs.org/en/about/releases/
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Yarn install, build and test
run: echo "In the steps below we will build and run first set of tests for all components"
- run: echo yarn install
- run: echo yarn lint
- run: echo yarn build
- run: echo yarn test
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Dump GITHUB_REF
run: echo "${GITHUB_REF}"
container_img_build_push_gar:
needs: [js_build_test]
# Allow the job to fetch a GitHub ID token
permissions:
id-token: write
contents: read
# The plan is to build and push each docker image in parallel.
strategy:
matrix:
image:
- us-docker.pkg.dev/biconomy-prod/bundler/trustwallet
# LOCATION-docker.pkg.dev/PROJECT-ID/REPOSITORY/IMAGE
# {owner}/{repo}/.github/workflows/{filename}@{ref}
uses: bcnmy/devops/.github/workflows/container_img_build_push_gar.yaml@master
with:
image: ${{ matrix.image }}
dockerfile: Dockerfile.helm
# GCP project where the identity provider is
# gcloud projects describe prj-workload-identity-001
gcp_project_number: '766873424314'
gcp_pool_id: 'pool-id-github-actions'
# gcp_provider_id: 'ga-GITHUB_REPO_NAME'
gcp_provider_id: 'ga-bundler'
# LOCATION-docker.pkg.dev/PROJECT-ID/REPOSITORY/IMAGE
gcp_registry: 'us-docker.pkg.dev/biconomy-prod/bundler/trustwallet'
gcp_service_account: '[email protected]'
deploy_tw_staging:
needs: [container_img_build_push_gar]
# Allow the job to fetch a GitHub ID token
# runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
uses: bcnmy/devops/.github/workflows/deploy_to_gke.yaml@master
with:
# GCP project where the identity provider is
# gcloud projects describe prj-workload-identity-001
gcp_project_number: '766873424314'
gcp_project_id: 'biconomy-prod'
gcp_bastion: 'bastion02'
gcp_bastion_zone: 'us-east1-b'
gcp_pool_id: 'pool-id-github-actions'
# created by devops/gcp/github-actions/configure_workload_identity_federation_with_github_actions_pipelines.sh
# gcp_provider_id: 'ga-GITHUB_REPO_NAME'
gcp_provider_id: 'ga-bundler'
# SERVICE_ACCOUNT_EMAIL="${SERVICE_ACCOUNT}@${PROJECT}.iam.gserviceaccount.com"
gcp_service_account: '[email protected]'
gcp_cluster_name: 'dedicated-bundler'
gcp_cluster_location: 'us-east1'
use_internal_ip: true
# https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
deploy_command: './install-bundler/bundler-update-release.sh bundler-tw-staging.cfg ${GITHUB_REF:10}'
# deploy_command: 'echo IMG_VERSION is ${GITHUB_REF:10}' # for example extracts v0.0.5 from "refs/tags/v0.0.5"
# deploy_tw_prod:
# needs: [deploy_tw_staging]
# # environment: tw-prod
# # Allow the job to fetch a GitHub ID token
# # runs-on: ubuntu-latest
# permissions:
# id-token: write
# contents: read
# uses: bcnmy/devops/.github/workflows/deploy_to_gke.yaml@master
# with:
# environment: 'tw-prod'
# # GCP project where the identity provider is
# # gcloud projects describe prj-workload-identity-001
# gcp_project_number: '766873424314'
# gcp_project_id: 'biconomy-prod'
# gcp_bastion: 'bastion02'
# gcp_bastion_zone: 'us-east1-b'
# gcp_pool_id: 'pool-id-github-actions'
# # created by devops/gcp/github-actions/configure_workload_identity_federation_with_github_actions_pipelines.sh
# # gcp_provider_id: 'ga-GITHUB_REPO_NAME'
# gcp_provider_id: 'ga-bundler'
# # SERVICE_ACCOUNT_EMAIL="${SERVICE_ACCOUNT}@${PROJECT}.iam.gserviceaccount.com"
# gcp_service_account: '[email protected]'
# gcp_cluster_name: 'trustwallet'
# gcp_cluster_location: 'us-central1'
# use_internal_ip: true
# deploy_command: './install-paymaster/paymaster-update-setup.sh bundler-tw-production.cfg ${GITHUB_REF:10}'
# # deploy_command: './install-paymaster/paymaster-update-setup.sh $bundler-tw-production.cfg {GITHUB_REF:10}'
# # deploy_command: 'helm ls --all-namespaces'