Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
N
node-bigstream
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bs
node-bigstream
Commits
77082adc
Commit
77082adc
authored
Sep 11, 2025
by
Kamron Aroonrua
💬
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'ondev-gcs' into 'dev'
gitlab ci See merge request
!52
parents
8e181241
f6566ad4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
.gitlab-ci.yaml
.gitlab-ci.yaml
+40
-0
No files found.
.gitlab-ci.yaml
0 → 100644
View file @
77082adc
stages
:
-
build
-
push
variables
:
IMAGE_NAME
:
"
registry.igridproject.info/bs/node-bigstream"
docker-build
:
stage
:
build
tags
:
-
igrid
-
gitlab
script
:
-
echo "Building Docker image for $CI_COMMIT_REF_NAME"
-
docker build -t $IMAGE_NAME:$CI_COMMIT_REF_NAME .
-
if [ "$CI_COMMIT_REF_NAME" = "master" ]; then
docker tag $IMAGE_NAME:$CI_COMMIT_REF_NAME $IMAGE_NAME:latest;
fi
only
:
-
branches
-
tags
docker-push
:
stage
:
push
tags
:
-
igrid
-
gitlab
script
:
-
echo "Logging into registry $CI_REGISTRY"
-
echo "$CI_REGISTRY_PASSWORD" | docker login -u "$CI_REGISTRY_USER" --password-stdin $CI_REGISTRY
-
echo "Pushing Docker image $IMAGE_NAME:$CI_COMMIT_REF_NAME"
-
docker push $IMAGE_NAME:$CI_COMMIT_REF_NAME
-
if [ "$CI_COMMIT_REF_NAME" = "master" ]; then
docker push $IMAGE_NAME:latest;
fi
only
:
-
branches
-
tags
needs
:
-
job
:
docker-build
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment