From 932731821c4f4a479d829614587ef9e9cc692a7a Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 27 Mar 2026 22:36:57 +0530 Subject: [PATCH 01/30] Create README.md with personal introduction and projects Added a personal README file outlining skills, projects, and interests. --- Task-1/gokulpr-1@mulearn/README.md | 50 ++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 Task-1/gokulpr-1@mulearn/README.md diff --git a/Task-1/gokulpr-1@mulearn/README.md b/Task-1/gokulpr-1@mulearn/README.md new file mode 100644 index 00000000..63c35bff --- /dev/null +++ b/Task-1/gokulpr-1@mulearn/README.md @@ -0,0 +1,50 @@ +# Hi there! I'm Gokul P R πŸ‘‹ + +### πŸš€ DevOps & Cybersecurity Learner | Tech Enthusiast + +I am a B.Tech student passionate about building real-world projects and mastering modern technologies. I enjoy exploring how software systems work and continuously improving my skills in development, version control, and problem-solving. Currently, I am deepening my knowledge in Git/GitHub workflows and DevOps fundamentals. + +--- + +### πŸ› οΈ Technical Stack + +- **Languages:** Python +- **Tools:** Git, GitHub, +- **Cybersecurity:** TryHackMe (SOC Level 1 Certified), NPTEL (Cyber Security & Privacy) +- **Areas of Interest:** DevOps, Cybersecurity, Mechanical Engineering Systems + +--- + +### πŸš€ Projects & Experience + +- **Campus Ambassador:** Served as a Campus Ambassador for programs at IIT Delhi and IIT Gandhinagar (Blithchron 2026). +- **Resume Analyzer:** A project that extracts and analyzes resume data using Python logic. +- **Elite Hack 1.0:** Participated and built a collaborative solution during the hackathon. +- **SOC Level 1:** Completed the Security Operations Center path on TryHackMe. + +--- + +### 🌍 Community & Learning + +- Active learner in tech communities (Β΅Learn). +- Passionate about open-source contributions and collaborative building. +- Focus on bridging the gap between Mechanical Engineering and Software systems. + +--- + +### πŸ“ˆ Current Focus + +- Mastering CI/CD pipelines and DevOps workflows. +- Solving algorithmic problems with Python. +- Building a strong foundation in Cybersecurity. + +--- + +### πŸ“« Connect with Me + +- **GitHub:** [github.com/GOKUL-P-R](https://github.com/GOKUL-P-R) +- **LinkedIn:** (https://www.linkedin.com/in/gokul-p-r-430b5b365?utm_source=share_via&utm_content=profile&utm_medium=member_android) + +--- + +✨ *"Consistent learning and building is the key to success."* From 5fc9501234ec970aa69c9cce48df77826dfdbb64 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sun, 29 Mar 2026 20:23:22 +0530 Subject: [PATCH 02/30] Add script to print 'Hello World' every 5 seconds --- Task-2/gokulpr-1@mulearn/script.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Task-2/gokulpr-1@mulearn/script.py diff --git a/Task-2/gokulpr-1@mulearn/script.py b/Task-2/gokulpr-1@mulearn/script.py new file mode 100644 index 00000000..e6d64ba0 --- /dev/null +++ b/Task-2/gokulpr-1@mulearn/script.py @@ -0,0 +1,7 @@ +import time + +print("πŸš€ Container Started") + +while True: + print("Hello World") + time.sleep(5) From f92e65816cefeef293b229fe8dc78665261da58d Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sun, 29 Mar 2026 20:25:01 +0530 Subject: [PATCH 03/30] Add Dockerfile for Python application --- Task-2/gokulpr-1@mulearn/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Task-2/gokulpr-1@mulearn/Dockerfile diff --git a/Task-2/gokulpr-1@mulearn/Dockerfile b/Task-2/gokulpr-1@mulearn/Dockerfile new file mode 100644 index 00000000..4846c4b7 --- /dev/null +++ b/Task-2/gokulpr-1@mulearn/Dockerfile @@ -0,0 +1,4 @@ +FROM python:3.9-slim +WORKDIR /app +COPY script.py . +CMD ["python", "script.py"] From 723b029396dba984c3ac81c065038516c71e92b9 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 11:05:15 +0000 Subject: [PATCH 04/30] Adding CI/CD workflow --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..d11f7fb9 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: Deploy to GitHub Pages +on: + push: + branches: + - main +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Deploy + uses: JamesIves/github-pages-deploy-action@v4 + with: + folder: . From 067f974b1263c116afdf90cd42398b06c6ab0e43 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 11:56:51 +0000 Subject: [PATCH 05/30] restoring index.html --- index.html | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 index.html diff --git a/index.html b/index.html new file mode 100644 index 00000000..f45cf924 --- /dev/null +++ b/index.html @@ -0,0 +1,2 @@ +

CI/CD Pipeline Successful!

+

My website is now live via GitHub Actions.

From 99934246d29aacb8540bbe537303a51705382752 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 12:04:03 +0000 Subject: [PATCH 06/30] Fix: Add index.html to root --- index.html => Task-3/index.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename index.html => Task-3/index.html (100%) diff --git a/index.html b/Task-3/index.html similarity index 100% rename from index.html rename to Task-3/index.html From e74c81a3e2378997b92a94ce288e5610a07ca2ab Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 12:17:07 +0000 Subject: [PATCH 07/30] Add Task-3 folder --- Task-3/index.html => index.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Task-3/index.html => index.html (100%) diff --git a/Task-3/index.html b/index.html similarity index 100% rename from Task-3/index.html rename to index.html From 5d7fef21b6caccd1394ff8dd89b7d534d0905c28 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:12:20 +0000 Subject: [PATCH 08/30] done --- index.html | 98 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 96 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index f45cf924..28b7e8cd 100644 --- a/index.html +++ b/index.html @@ -1,2 +1,96 @@ -

CI/CD Pipeline Successful!

-

My website is now live via GitHub Actions.

+ + + + + +CI/CD Assignment + + + + + +
+

πŸš€ CI/CD Pipeline Basics

+

Website deployed using GitHub Actions + GitHub Pages

+ +

Name: GOKUL P R

+

MUID: gokulpr-1@mulearn

+ + +
+ + From f901585f17ae90523ac9ab2e777fdca5df93c818 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:19:16 +0000 Subject: [PATCH 09/30] ok --- .github/workflows/main.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d11f7fb9..9b63ca07 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,4 +1,5 @@ -name: Deploy to GitHub Pages +name: Deploy Website + on: push: branches: @@ -6,10 +7,13 @@ on: jobs: build-and-deploy: runs-on: ubuntu-latest + steps: - - name: Checkout + - name: Checkout code uses: actions/checkout@v3 - - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4 + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 with: - folder: . + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: . \ No newline at end of file From 91c7786c54eb9a95fba7c12517f6a5d4a24c75bb Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:22:08 +0000 Subject: [PATCH 10/30] Re-adding Task-3 and index.html. --- Task-3/index.html | 96 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 Task-3/index.html diff --git a/Task-3/index.html b/Task-3/index.html new file mode 100644 index 00000000..28b7e8cd --- /dev/null +++ b/Task-3/index.html @@ -0,0 +1,96 @@ + + + + + +CI/CD Assignment + + + + + +
+

πŸš€ CI/CD Pipeline Basics

+

Website deployed using GitHub Actions + GitHub Pages

+ +

Name: GOKUL P R

+

MUID: gokulpr-1@mulearn

+ + +
+ + From d0f71b9e3d7686fe39e2e6eef15ee78956f087db Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:38:37 +0000 Subject: [PATCH 11/30] done --- README.md | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 96 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3955119a..28b7e8cd 100644 --- a/README.md +++ b/README.md @@ -1 +1,96 @@ -# Shipyard-Foundations \ No newline at end of file + + + + + +CI/CD Assignment + + + + + +
+

πŸš€ CI/CD Pipeline Basics

+

Website deployed using GitHub Actions + GitHub Pages

+ +

Name: GOKUL P R

+

MUID: gokulpr-1@mulearn

+ + +
+ + From ca0e5850093982eff916f3ca9ba0fbbb9b50b744 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:41:35 +0000 Subject: [PATCH 12/30] done1 --- Task-3/README.md | 96 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 Task-3/README.md diff --git a/Task-3/README.md b/Task-3/README.md new file mode 100644 index 00000000..28b7e8cd --- /dev/null +++ b/Task-3/README.md @@ -0,0 +1,96 @@ + + + + + +CI/CD Assignment + + + + + +
+

πŸš€ CI/CD Pipeline Basics

+

Website deployed using GitHub Actions + GitHub Pages

+ +

Name: GOKUL P R

+

MUID: gokulpr-1@mulearn

+ + +
+ + From be50589817bf9f38484f2c79947cf68a1c7ea9c4 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:46:21 +0000 Subject: [PATCH 13/30] ok --- index.html | 111 ++++++++--------------------------------------------- 1 file changed, 17 insertions(+), 94 deletions(-) diff --git a/index.html b/index.html index 28b7e8cd..9b63ca07 100644 --- a/index.html +++ b/index.html @@ -1,96 +1,19 @@ - - - - - -CI/CD Assignment +name: Deploy Website - - - - -
-

πŸš€ CI/CD Pipeline Basics

-

Website deployed using GitHub Actions + GitHub Pages

- -

Name: GOKUL P R

-

MUID: gokulpr-1@mulearn

- - -
- - + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: . \ No newline at end of file From 68e25c6f5f06e863960b7f2e8c870222a7350393 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:48:31 +0000 Subject: [PATCH 14/30] ok1 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9b63ca07..4c81077a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,5 +15,5 @@ jobs: - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: . \ No newline at end of file + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: .1 \ No newline at end of file From ee69d1ec0bb87e7718ad3f1d2a033e7c9e973888 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:51:49 +0000 Subject: [PATCH 15/30] yes --- .github/workflows/main.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 4c81077a..00000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Deploy Website - -on: - push: - branches: - - main -jobs: - build-and-deploy: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: .1 \ No newline at end of file From ad456b3e197c69803ce90c0fc2697a6fa8010068 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:53:27 +0000 Subject: [PATCH 16/30] ok2 --- Task-3/index.html | 111 +++++++--------------------------------------- 1 file changed, 17 insertions(+), 94 deletions(-) diff --git a/Task-3/index.html b/Task-3/index.html index 28b7e8cd..9b63ca07 100644 --- a/Task-3/index.html +++ b/Task-3/index.html @@ -1,96 +1,19 @@ - - - - - -CI/CD Assignment +name: Deploy Website - - - - -
-

πŸš€ CI/CD Pipeline Basics

-

Website deployed using GitHub Actions + GitHub Pages

- -

Name: GOKUL P R

-

MUID: gokulpr-1@mulearn

- - -
- - + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: . \ No newline at end of file From 37e869c81c8add6bc21a0aac9d21e9d4ef11346c Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:55:20 +0000 Subject: [PATCH 17/30] ppp --- .vscode/launch.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..5927626b --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,35 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + + { + "name": "Launch Chrome", + "request": "launch", + "type": "chrome", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + }, + { + "name": "Attach to Chrome", + "port": 9222, + "request": "attach", + "type": "chrome", + "webRoot": "${workspaceFolder}" + }, + + + + + + + { + "type": "chrome", + "request": "launch", + "name": "Open index.html", + "file": "/workspaces/Shipyard-Foundations/Task-3/index.html" + } + ] +} \ No newline at end of file From 27ed47895139bc38698e08afbd26d399a307dc61 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 18:57:25 +0000 Subject: [PATCH 18/30] ok --- .github/workflows/index.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/index.html diff --git a/.github/workflows/index.html b/.github/workflows/index.html new file mode 100644 index 00000000..9b63ca07 --- /dev/null +++ b/.github/workflows/index.html @@ -0,0 +1,19 @@ +name: Deploy Website + +on: + push: + branches: + - main +jobs: + build-and-deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Deploy to GitHub Pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: . \ No newline at end of file From 90ed97667ad065e3146c5612e0cc85db43965e57 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Fri, 3 Apr 2026 19:00:33 +0000 Subject: [PATCH 19/30] kk --- .vscode/launch.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 5927626b..ac8146a0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,6 +5,45 @@ "version": "0.2.0", "configurations": [ + { + "name": "Attach", + "port": 9229, + "request": "attach", + "skipFiles": [ + "/**" + ], + "type": "node" + }, + { + "name": "Attach to Integrated Browser", + "request": "attach", + "type": "editor-browser", + "webRoot": "${workspaceFolder}" + }, + { + "name": "Launch Edge", + "request": "launch", + "type": "msedge", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + }, + { + "name": "Launch Chrome", + "request": "launch", + "type": "chrome", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}" + }, + { + "name": "Attach by Process ID", + "processId": "${command:PickProcess}", + "request": "attach", + "skipFiles": [ + "/**" + ], + "type": "node" + }, + { "name": "Launch Chrome", "request": "launch", From 73890ffc66fdf22b743b42c25da32bb332e01cd6 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 22:29:12 +0530 Subject: [PATCH 20/30] Create Task 4 --- Task 4 | 1 + 1 file changed, 1 insertion(+) create mode 100644 Task 4 diff --git a/Task 4 b/Task 4 new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/Task 4 @@ -0,0 +1 @@ + From e4673607441014e62511d6c1ce53a04d5e18fe5b Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 17:06:31 +0000 Subject: [PATCH 21/30] done --- Task 4 | 1 - Task-4/gokulpr-1@mulearn/deployment.yaml | 19 +++++++++++++++++++ Task-4/gokulpr-1@mulearn/service.yaml | 13 +++++++++++++ 3 files changed, 32 insertions(+), 1 deletion(-) delete mode 100644 Task 4 create mode 100644 Task-4/gokulpr-1@mulearn/deployment.yaml create mode 100644 Task-4/gokulpr-1@mulearn/service.yaml diff --git a/Task 4 b/Task 4 deleted file mode 100644 index 8b137891..00000000 --- a/Task 4 +++ /dev/null @@ -1 +0,0 @@ - diff --git a/Task-4/gokulpr-1@mulearn/deployment.yaml b/Task-4/gokulpr-1@mulearn/deployment.yaml new file mode 100644 index 00000000..439b4a81 --- /dev/null +++ b/Task-4/gokulpr-1@mulearn/deployment.yaml @@ -0,0 +1,19 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx-deployment +spec: + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx:latest + ports: + - containerPort: 80 \ No newline at end of file diff --git a/Task-4/gokulpr-1@mulearn/service.yaml b/Task-4/gokulpr-1@mulearn/service.yaml new file mode 100644 index 00000000..ca668397 --- /dev/null +++ b/Task-4/gokulpr-1@mulearn/service.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Service +metadata: + name: nginx-service +spec: + type: NodePort + selector: + app: nginx + ports: + - protocol: TCP + port: 80 + targetPort: 80 + nodePort: 30007 \ No newline at end of file From b0bcbddacc1073aa67a5395ade5f13144ec92f42 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 17:33:18 +0000 Subject: [PATCH 22/30] perfect --- .../Task-4}/deployment.yaml | 0 .../gokulpr-1@mulearn => gokulpr-1@mulearn/Task-4}/service.yaml | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename {Task-4/gokulpr-1@mulearn => gokulpr-1@mulearn/Task-4}/deployment.yaml (100%) rename {Task-4/gokulpr-1@mulearn => gokulpr-1@mulearn/Task-4}/service.yaml (100%) diff --git a/Task-4/gokulpr-1@mulearn/deployment.yaml b/gokulpr-1@mulearn/Task-4/deployment.yaml similarity index 100% rename from Task-4/gokulpr-1@mulearn/deployment.yaml rename to gokulpr-1@mulearn/Task-4/deployment.yaml diff --git a/Task-4/gokulpr-1@mulearn/service.yaml b/gokulpr-1@mulearn/Task-4/service.yaml similarity index 100% rename from Task-4/gokulpr-1@mulearn/service.yaml rename to gokulpr-1@mulearn/Task-4/service.yaml From bbd5a374acb4020ad25f78b1944c5c461b339260 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 23:11:29 +0530 Subject: [PATCH 23/30] Delete .github/workflows directory --- .github/workflows/index.html | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/index.html diff --git a/.github/workflows/index.html b/.github/workflows/index.html deleted file mode 100644 index 9b63ca07..00000000 --- a/.github/workflows/index.html +++ /dev/null @@ -1,19 +0,0 @@ -name: Deploy Website - -on: - push: - branches: - - main -jobs: - build-and-deploy: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: . \ No newline at end of file From 97ed9d5b3d857a89be69d45a94f75f4f23147c8d Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 23:11:47 +0530 Subject: [PATCH 24/30] Delete index.html --- index.html | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 index.html diff --git a/index.html b/index.html deleted file mode 100644 index 9b63ca07..00000000 --- a/index.html +++ /dev/null @@ -1,19 +0,0 @@ -name: Deploy Website - -on: - push: - branches: - - main -jobs: - build-and-deploy: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: . \ No newline at end of file From ee9e94a77f918410232bae1903b2762243df1420 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 23:12:13 +0530 Subject: [PATCH 25/30] Delete Task-3 directory --- Task-3/README.md | 96 ----------------------------------------------- Task-3/index.html | 19 ---------- 2 files changed, 115 deletions(-) delete mode 100644 Task-3/README.md delete mode 100644 Task-3/index.html diff --git a/Task-3/README.md b/Task-3/README.md deleted file mode 100644 index 28b7e8cd..00000000 --- a/Task-3/README.md +++ /dev/null @@ -1,96 +0,0 @@ - - - - - -CI/CD Assignment - - - - - -
-

πŸš€ CI/CD Pipeline Basics

-

Website deployed using GitHub Actions + GitHub Pages

- -

Name: GOKUL P R

-

MUID: gokulpr-1@mulearn

- - -
- - diff --git a/Task-3/index.html b/Task-3/index.html deleted file mode 100644 index 9b63ca07..00000000 --- a/Task-3/index.html +++ /dev/null @@ -1,19 +0,0 @@ -name: Deploy Website - -on: - push: - branches: - - main -jobs: - build-and-deploy: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Deploy to GitHub Pages - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: . \ No newline at end of file From 093e3c565f8cd1f0081b7076e55b41ef190bb870 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 17:46:09 +0000 Subject: [PATCH 26/30] Add Task-3 CI/CD demo site and GitHub Pages workflow --- .github/workflows/deploy.yml | 21 +++++++++++ gokulpr-1@mulearn/Task-3/index.html | 52 ++++++++++++++++++++++++++ gokulpr-1@mulearn/Task-3/submission.md | 13 +++++++ 3 files changed, 86 insertions(+) create mode 100644 .github/workflows/deploy.yml create mode 100644 gokulpr-1@mulearn/Task-3/index.html create mode 100644 gokulpr-1@mulearn/Task-3/submission.md diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..16ac03a8 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,21 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Deploy Task 3 website to GitHub Pages + uses: peaceiris/actions-gh-pages@v5 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./gokulpr-1@mulearn/Task-3 + publish_branch: gh-pages + keep_files: false diff --git a/gokulpr-1@mulearn/Task-3/index.html b/gokulpr-1@mulearn/Task-3/index.html new file mode 100644 index 00000000..cef9cf2b --- /dev/null +++ b/gokulpr-1@mulearn/Task-3/index.html @@ -0,0 +1,52 @@ + + + + + + Shipyard Foundations - CI/CD Demo + + + +
+

Shipyard Foundations CI/CD Demo

+

+ This website is deployed automatically using GitHub Actions and GitHub Pages. +

+

Task 3: CI/CD Pipeline Basics

+

+ Workflow uses actions/checkout and peaceiris/actions-gh-pages to publish this folder as a static site. +

+
+ + diff --git a/gokulpr-1@mulearn/Task-3/submission.md b/gokulpr-1@mulearn/Task-3/submission.md new file mode 100644 index 00000000..e4f6f1c0 --- /dev/null +++ b/gokulpr-1@mulearn/Task-3/submission.md @@ -0,0 +1,13 @@ +# CI/CD Assignment Submission + +Name: Gokul P R +muid: gokulpr-1@mulearn + +## πŸ”— Repository Link +https://github.com/GOKUL-P-R/Shipyard-Foundations + +## 🌐 Live Website +https://GOKUL-P-R.github.io/Shipyard-Foundations/ + +## 🌐 Git Actions Link +https://github.com/GOKUL-P-R/Shipyard-Foundations/actions From cb8c76a2f8c199fe0d3ef807a449883edc4cb512 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 17:46:49 +0000 Subject: [PATCH 27/30] Allow workflow to run on task-3-cicd branch push --- .github/workflows/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 16ac03a8..1afca23a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - task-3-cicd jobs: deploy: From bcbcbb8b6a4b5cf3db21506b43959b59b7f24b76 Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 17:49:13 +0000 Subject: [PATCH 28/30] Fix GitHub Pages action version to v4 --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1afca23a..6d98d000 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,7 +14,7 @@ jobs: uses: actions/checkout@v4 - name: Deploy Task 3 website to GitHub Pages - uses: peaceiris/actions-gh-pages@v5 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./gokulpr-1@mulearn/Task-3 From 04075defce9eaed2f4b3befc0394256eddd5a47e Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 17:54:51 +0000 Subject: [PATCH 29/30] Deploy Task-3 site to main root for current Pages config --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6d98d000..03b3aca2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,5 +18,5 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./gokulpr-1@mulearn/Task-3 - publish_branch: gh-pages - keep_files: false + publish_branch: main + keep_files: true From 9d20f59639c50945a92703dcc220ec4aca96ce1d Mon Sep 17 00:00:00 2001 From: GOKUL-P-R Date: Sat, 4 Apr 2026 18:08:57 +0000 Subject: [PATCH 30/30] Update index.html: change background to light blue, remove workflow sentence, add name and MUID --- gokulpr-1@mulearn/Task-3/index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gokulpr-1@mulearn/Task-3/index.html b/gokulpr-1@mulearn/Task-3/index.html index cef9cf2b..5f87c3da 100644 --- a/gokulpr-1@mulearn/Task-3/index.html +++ b/gokulpr-1@mulearn/Task-3/index.html @@ -9,7 +9,7 @@ font-family: Arial, sans-serif; margin: 0; padding: 2rem; - background: #f4f7fb; + background: lightblue; color: #1a1a1a; } main { @@ -45,7 +45,8 @@

Shipyard Foundations CI/CD Demo

Task 3: CI/CD Pipeline Basics

- Workflow uses actions/checkout and peaceiris/actions-gh-pages to publish this folder as a static site. + Name: Gokul P R
+ MUID: gokulpr-1@mulearn