Compare commits

..

18 Commits

Author SHA1 Message Date
Amit Rajput
d67ad21b7d fixing workflow 2025-11-27 19:00:28 +05:30
Amit Rajput
4aec3cdb78 new workflow 2025-11-27 18:15:45 +05:30
Sahil Ahuja
ddd5f59c18 Update 2025-03-08 22:25:30 +05:30
Sahil Ahuja
98843f44f6 Fixing parsing json using jq 2025-03-08 22:23:33 +05:30
Sahil Ahuja
a24a7ce927 Removing repo-template 2025-03-08 18:09:58 +05:30
Sahil Ahuja
7cbbb82805 Fixing commit message 2025-03-06 23:34:44 +05:30
Sahil Ahuja
45b7982a4c Fix 2025-03-06 23:31:32 +05:30
Sahil Ahuja
ae65162eb4 Fixing version visibility 2025-03-06 23:28:17 +05:30
Sahil Ahuja
58708425fd Fixing repo name 2025-03-06 23:18:46 +05:30
Sahil Ahuja
c214aac69d Updating the version of deploy-tools pulled 2025-03-06 23:11:04 +05:30
Sahil Ahuja
edeaa7f7c0 Fix 2025-03-06 23:07:50 +05:30
Sahil Ahuja
5d6a43a007 Fix 2025-03-06 23:05:31 +05:30
Sahil Ahuja
298c951b19 Fix 2025-03-06 23:02:50 +05:30
Sahil Ahuja
88ab0abceb Fix 2025-03-06 22:59:35 +05:30
Sahil Ahuja
7cc7edaee6 Fixing sending of repo name 2025-03-06 22:56:54 +05:30
Sahil Ahuja
23a90586b2 New commit messages 2025-03-06 22:46:33 +05:30
Sahil Ahuja
2c91e942b2 Temporary fix to builds 2025-03-04 23:20:25 +05:30
Sahil Ahuja
776661b372 Trying a new repo 2025-03-04 23:04:19 +05:30
14 changed files with 54 additions and 236 deletions

View File

@ -21,30 +21,48 @@ jobs:
name: Read the issue comment
run: |
ISSUE_COMMENT_STRING='${{ github.event.comment.body }}'
DOCKER_BASE=`echo $ISSUE_COMMENT_STRING | jq ".image"`
BUILD_ID=`echo $ISSUE_COMMENT_STRING | jq ".tag"`
echo "DOCKER_BASE=$DOCKER_BASE" >> "$GITHUB_OUTPUT";
echo "BUILD_ID=$BUILD_ID" >> "$GITHUB_OUTPUT";
TAG=`echo $ISSUE_COMMENT_STRING | jq -r ".tag"`
REPO=`echo $ISSUE_COMMENT_STRING | jq -r ".repo"`
SENDER=`echo $ISSUE_COMMENT_STRING | jq -r ".sender"`
# Try to extract docker_repo from issue comment, fallback to default variable
DOCKER_REPO_FROM_COMMENT=`echo $ISSUE_COMMENT_STRING | jq -r ".docker_repo"`
if [ -n "$DOCKER_REPO_FROM_COMMENT" ] && [ "$DOCKER_REPO_FROM_COMMENT" != "null" ]; then
DOCKER_REPO=$DOCKER_REPO_FROM_COMMENT/$REPO
echo "Using docker_repo from issue comment: $DOCKER_REPO"
else
DOCKER_REPO=${{ vars.docker_repo2_registry }}/$REPO
echo "Using fallback docker_repo: $DOCKER_REPO"
fi
echo "TAG=$TAG" >> "$GITHUB_OUTPUT";
echo "REPO=$REPO" >> "$GITHUB_OUTPUT";
echo "SENDER=$SENDER" >> "$GITHUB_OUTPUT";
echo "DOCKER_REPO=$DOCKER_REPO" >> "$GITHUB_OUTPUT";
- name: Print IMAGE and TAG
run: |
echo "BUILD_ID: ${{ steps.read-issue.outputs.BUILD_ID }}";
echo "DOCKER_BASE: ${{ steps.read-issue.outputs.DOCKER_BASE }}";
echo "TAG: ${{ steps.read-issue.outputs.TAG }}";
echo "REPO: ${{ steps.read-issue.outputs.REPO }}";
echo "SENDER: ${{ steps.read-issue.outputs.SENDER }}";
echo "DOCKER_REPO: ${{ steps.read-issue.outputs.DOCKER_REPO }}";
- name: Checkout cs repo
uses: actions/checkout@v4
with:
token: ${{ secrets.bot_build_repo_token }} #This is because we want to trigger a new build
fetch-depth: 50 #To get the topmost git tags
path: cs
# fetch-tags: true -- this doesn't work
#Temporary problem git#v2.48.0 - tags aren't fetched with --tags. https://github.com/actions/checkout/issues/2041
#fetch-depth: 50 #To get the topmost git tags
#fetch-tags: true
fetch-depth: 0
- name: Checkout deploy-tools
uses: actions/checkout@v4
with:
github-server-url: ${{ github.server_url }}
repository: gmetribin/deploy-tools
ref: v1.1.28
ref: v1.1.42
path: deploy-tools
# token: $\{{ github.token }} # DEFAULT / Any pushes with github.token don't trigger a chained build
@ -54,14 +72,15 @@ jobs:
git config --global user.name 'bot-build'
git config --global user.email 'techbots+build@gmetri.com'
BUILD_ID=${{ steps.read-issue.outputs.BUILD_ID }}
DOCKER_BASE=${{ steps.read-issue.outputs.DOCKER_BASE }}
TAG=${{ steps.read-issue.outputs.TAG }}
export REPO=${{ steps.read-issue.outputs.REPO }}
export SENDER=${{ steps.read-issue.outputs.SENDER }}
DOCKER_REPO=${{ steps.read-issue.outputs.DOCKER_REPO }}
REPOLIST=./.github/repolist.txt
pwd; ls -al;
cd cs;
git fetch --prune --unshallow --tags
../deploy-tools/src/repo_to_cs.sh -m $DOCKER_BASE -t $BUILD_ID -r $REPOLIST;
../deploy-tools/src/repo_to_cs.sh -m $DOCKER_REPO -t $TAG -r $REPOLIST;
git push origin main;
git push --tags origin main;

View File

@ -9,9 +9,10 @@ on:
description: 'The cs repo that contains this image'
required: true
type: string
env:
CS_REPO: ${{ github.repository }}
docker_repo:
description: 'The name of the action variable containing the docker repo value'
required: false
type: string
jobs:
trigger-cs-job:
@ -24,21 +25,19 @@ jobs:
run: |
SHA=${{ github.sha }}; BRANCH_NAME=${{ github.base_ref || github.ref_name }};
BUILD_ID=$BRANCH_NAME-${SHA:0:8};
DOCKER_BASE=${{ vars.docker_repo2_registry }}/$CS_REPO
DOCKER_IMAGE=$DOCKER_BASE:$BUILD_ID;
echo "BUILD_ID=$BUILD_ID" >> "$GITHUB_OUTPUT";
echo "DOCKER_BASE=$DOCKER_BASE" >> "$GITHUB_OUTPUT";
echo "DOCKER_IMAGE=$DOCKER_IMAGE" >> "$GITHUB_OUTPUT";
REPO=${{ github.repository }};
echo "REPO=$REPO" >> "$GITHUB_OUTPUT";
echo "TAG=$BUILD_ID" >> "$GITHUB_OUTPUT";
- name: Print build id and image name
- name: Print repo and tag
run: |
echo "BUILD_ID: ${{ steps.get-id.outputs.BUILD_ID }}";
echo "DOCKER_BASE: ${{ steps.get-id.outputs.DOCKER_BASE }}";
echo "DOCKER_IMAGE: ${{ steps.get-id.outputs.DOCKER_IMAGE }}";
echo "REPO: ${{ steps.get-id.outputs.REPO }}";
echo "TAG: ${{ steps.get-id.outputs.TAG }}";
- name: Push image name and tag to cs repo's latest issue with label workflow
run: |
ISSUE_COMMENT_STRING=`echo "{ \"image\": \"${{ steps.get-id.outputs.DOCKER_BASE }}\", \"tag\": \"${{ steps.get-id.outputs.BUILD_ID }}\" }" | jq tostring`
DOCKER_REPO_VALUE="${{ vars[inputs.docker_repo] }}"
ISSUE_COMMENT_STRING=`echo "{ \"docker_repo\": \"$DOCKER_REPO_VALUE\", \"repo\": \"${{ steps.get-id.outputs.REPO }}\", \"tag\": \"${{ steps.get-id.outputs.TAG }}\", \"sender\": \"${{ github.event.sender.login }}\" }" | jq tostring`
echo ISSUE_COMMENT_STRING: $ISSUE_COMMENT_STRING
API_JSON_BODY=`echo '{"body": '$ISSUE_COMMENT_STRING' }' | jq -r tostring`

View File

@ -61,7 +61,7 @@ jobs:
with:
github-server-url: ${{ github.server_url }}
repository: gmetribin/deploy-tools
ref: v1.1.19
ref: v1.1.42
path: deploy-tools
- name: Increment cs version in nm repo and push
@ -77,4 +77,6 @@ jobs:
cd nm;
CS_LIST=./.github/cslist.txt;
../deploy-tools/src/cs_to_nm.sh -c ${{ env.CS_REPO }} -v $VERSION -k $CS_LIST;
git commit -m "$CS_REPO_NAME to $VERSION by ${{ github.event.sender.login }}"
git push origin main;

2
.gitignore vendored
View File

@ -129,4 +129,4 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.idea/

View File

@ -1,15 +0,0 @@
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
indent_style = space
# Matches multiple files with brace expansion notation
# Set default charset
[*.{js,json,ts,py,sh,md,yml,yaml,njk}]
charset = utf-8
indent_size = 2

View File

@ -1,8 +0,0 @@
#Place this in .github/repolist.txt
#repo list
#FORMAT: image_name kustomization.yaml_path
## Used when the main branch of some repo gets built
repo2.hub.gmetri.io/gmetrivr/fs-ui ui/ui-1main/kustomization.yaml
repo2.hub.gmetri.io/gmetrivr/fs-learn-ui ui/ui-1main/kustomization.yaml
repo2.hub.gmetri.io/gmetrivr/dt-ui ui/ui-1main/kustomization.yaml

View File

@ -1,11 +0,0 @@
name: Update Repo Version
on:
issue_comment:
types: [created]
jobs:
cs-update-push:
uses: gmetribin/deploy-tools/.github/workflows/cs-update-push.yml@v1.1.21
secrets: inherit

View File

@ -1,14 +0,0 @@
name: Deploy to dev
on:
workflow_dispatch:
push: # Push events on every tag / only for nm-dev
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
nm-update-dev:
uses: gmetribin/deploy-tools/.github/workflows/nm-update.yml@v1.1.21
secrets: inherit
with:
nm_repo: gmetrivr/nm-dev

View File

@ -1,11 +0,0 @@
name: Deploy to rc
on:
workflow_dispatch:
jobs:
nm-update-rc:
uses: gmetribin/deploy-tools/.github/workflows/nm-update.yml@v1.1.21
secrets: inherit
with:
nm_repo: gmetrivr/nm-rc

View File

@ -1,11 +0,0 @@
name: Deploy to prod
on:
workflow_dispatch:
jobs:
nm-update-prod:
uses: gmetribin/deploy-tools/.github/workflows/nm-update.yml@v1.1.21
secrets: inherit
with:
nm_repo: gmetrivr/nm-prod

View File

@ -1,132 +0,0 @@
# ---> Node
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
*.lcov
# nyc test coverage
.nyc_output
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/
# TypeScript cache
*.tsbuildinfo
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional stylelint cache
.stylelintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Next.js build output
.next
out
# Nuxt.js build / generate output
.nuxt
dist
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public
# vuepress build output
.vuepress/dist
# vuepress v2.x temp and cache directory
.temp
.cache
# Docusaurus cache and generated files
.docusaurus
# Serverless directories
.serverless/
# FuseBox cache
.fusebox/
# DynamoDB Local files
.dynamodb/
# TernJS port file
.tern-port
# Stores VSCode versions used for testing VSCode extensions
.vscode-test
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
.idea/

View File

@ -34,8 +34,6 @@ main()
sed -i -e "s/${SEARCH_STRING}.*/${SEARCH_STRING}${VERSION}/" $KUST_PATH
git add $KUST_PATH
done <<< "$CSLIST"
git commit -m "$CS_REPO_NAME updated to $VERSION"
}
### Starts here

View File

@ -39,10 +39,12 @@ main()
done <<< "$KUST_FILES_LINES"
source $SCRIPT_DIR/repo_to_cs_basetag.sh;
# cat $NEW_TAG > version; #To always allow a commit
# git add version;
git commit -m "$NEW_TAG: $IMAGE updated to $IMAGE_TAG";
git tag -a $NEW_TAG -m "$NEW_TAG: $IMAGE updated to $IMAGE_TAG"
echo "NEW_TAG: $NEW_TAG"
COMMIT_MESSAGE="$NEW_TAG: $REPO to $IMAGE_TAG by $SENDER";
git commit -m "$COMMIT_MESSAGE"
git tag -a $NEW_TAG -m "$COMMIT_MESSAGE"
}
### Starts here