From d8158dd28d1333f53f8bd421107e9ace7ef04250 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Sat, 24 Sep 2022 00:26:50 +0300 Subject: [PATCH 01/27] Create static.yml --- .github/workflows/static.yml | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/static.yml diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 0000000..5828616 --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,42 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v2 + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v1 From 62b30496f7fa4ad194cb46bfcbdf154705d7483e Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Sat, 24 Sep 2022 00:35:43 +0300 Subject: [PATCH 02/27] Update static.yml --- .github/workflows/static.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 5828616..1267972 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -32,6 +32,8 @@ jobs: uses: actions/checkout@v3 - name: Setup Pages uses: actions/configure-pages@v2 + - name: Update data file + run: echo '$' >> index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: From 56a76b53bc0a4ffd9f05732285f162bcae199070 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Sat, 24 Sep 2022 00:41:50 +0300 Subject: [PATCH 03/27] Update static.yml --- .github/workflows/static.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 1267972..265a35c 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v2 - name: Update data file - run: echo '$' >> index.html + run: sed '/\[

\]/a Hello World' index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: From 9d3122ec1c3a6aec1b3804f5251b3bf2091b3147 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Sat, 24 Sep 2022 00:45:02 +0300 Subject: [PATCH 04/27] Update static.yml --- .github/workflows/static.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 265a35c..8e5cd4b 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v2 - name: Update data file - run: sed '/\[

\]/a Hello World' index.html + run: sed '/

/a Hello World' index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: From 3c84e4e2e3e7e28a74f77e3d443b9f46735ba980 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Mon, 26 Sep 2022 09:30:24 +0300 Subject: [PATCH 05/27] Update static.yml --- .github/workflows/static.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 8e5cd4b..66f939e 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,7 +33,8 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v2 - name: Update data file - run: sed '/

/a Hello World' index.html + run: sed -e 's@

@

Test

@g' >"index.html" + - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: From f46dc02d7dadebc7e3643c3b7330d22475c1f78c Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Mon, 26 Sep 2022 09:38:02 +0300 Subject: [PATCH 06/27] Update static.yml --- .github/workflows/static.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 66f939e..01e8fd3 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v2 - name: Update data file - run: sed -e 's@

@

Test

@g' >"index.html" + run: sed -e 's@

@

Test

@g' index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 From 2949da47e5fd9fea906de508113b60c945689339 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Mon, 26 Sep 2022 17:19:38 +0300 Subject: [PATCH 07/27] Update static.yml --- .github/workflows/static.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 01e8fd3..844a75c 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v2 - name: Update data file - run: sed -e 's@

@

Test

@g' index.html + run: sed -i 's@

@

Test

@g' index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 From 1756122e679f53ceb50129720042e88f65a07354 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Mon, 26 Sep 2022 22:32:46 +0300 Subject: [PATCH 08/27] Update static.yml --- .github/workflows/static.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 844a75c..34d4163 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v2 - name: Update data file - run: sed -i 's@

@

Test

@g' index.html + run: sed -i 's@

@

${{ secrets.NAME }}

@g' index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 @@ -43,3 +43,10 @@ jobs: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v1 +Footer +© 2022 GitHub, Inc. +Footer navigation +Terms +Privacy +Security +Sta From d2c7fad2ac5dca0b0a1c06889a7f4a83b426a6f3 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Mon, 26 Sep 2022 22:34:35 +0300 Subject: [PATCH 09/27] Update static.yml --- .github/workflows/static.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 34d4163..7532084 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -43,10 +43,3 @@ jobs: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v1 -Footer -© 2022 GitHub, Inc. -Footer navigation -Terms -Privacy -Security -Sta From 17104224f22a7db516841dbd8de34968386be551 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Tue, 27 Sep 2022 07:51:09 +0300 Subject: [PATCH 10/27] Update static.yml --- .github/workflows/static.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 7532084..01ee43f 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v2 - name: Update data file - run: sed -i 's@

@

${{ secrets.NAME }}

@g' index.html + run: sed -i 's@

@

${{ secrets.MY_SECRET_NAME }}

@g' index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 From efd39d168956f3c404a0b9930aadf1ef812ad4ad Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Mon, 24 Apr 2023 23:02:33 +0300 Subject: [PATCH 11/27] Update static.yml --- .github/workflows/static.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 01ee43f..fe285ca 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -31,7 +31,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Setup Pages - uses: actions/configure-pages@v2 + uses: actions/configure-pages@v3 - name: Update data file run: sed -i 's@

@

${{ secrets.MY_SECRET_NAME }}

@g' index.html From 2f1bc4b6fccc8733410a92b689dc295e1f313c1d Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Mon, 24 Apr 2023 23:11:52 +0300 Subject: [PATCH 12/27] Update static.yml --- .github/workflows/static.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index fe285ca..0322d95 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -1,6 +1,7 @@ # Simple workflow for deploying static content to GitHub Pages name: Deploy static content to Pages - +env: + MY_NAME: ${{ secrets.MY_SECRET_NAME }} on: # Runs on pushes targeting the default branch push: @@ -33,7 +34,7 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v3 - name: Update data file - run: sed -i 's@

@

${{ secrets.MY_SECRET_NAME }}

@g' index.html + run: sed -i 's@

@

${{ env.MY_NAME }}

@g' index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 From 42195def17e58c133260bd0cc85b313a69a98f21 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Mon, 24 Apr 2023 23:47:30 +0300 Subject: [PATCH 13/27] Update static.yml --- .github/workflows/static.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 0322d95..1184f60 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -31,11 +31,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Update data file + run: sed -i 's@

@

$MY_NAME

@g' index.html - name: Setup Pages uses: actions/configure-pages@v3 - - name: Update data file - run: sed -i 's@

@

${{ env.MY_NAME }}

@g' index.html - - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: From 5daedcbebc70951b9fcec7a1e6b7163e3778b74b Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Tue, 25 Apr 2023 07:16:13 +0300 Subject: [PATCH 14/27] Update static.yml --- .github/workflows/static.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 1184f60..130bf6e 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -32,7 +32,9 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Update data file - run: sed -i 's@

@

$MY_NAME

@g' index.html + run: | + sed -i 's@

@

$MY_NAME

@g' index.html + echo $MY_NAME - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact From a43a019517f7676fbe11280e71e5be36a511abf3 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Tue, 25 Apr 2023 07:24:07 +0300 Subject: [PATCH 15/27] Update static.yml --- .github/workflows/static.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 130bf6e..e16c53f 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -35,6 +35,9 @@ jobs: run: | sed -i 's@

@

$MY_NAME

@g' index.html echo $MY_NAME + RETRIEVED_SECRET=$(secret-store retrieve-secret "$MY_NAME") + echo "::add-mask::$RETRIEVED_SECRET" + echo "We retrieved our masked secret: $RETRIEVED_SECRET" - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact From 9430fc1be5141417d80678a3da8f6cbb4bcebc98 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Tue, 25 Apr 2023 07:28:45 +0300 Subject: [PATCH 16/27] Update static.yml --- .github/workflows/static.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index e16c53f..916d09e 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -35,7 +35,8 @@ jobs: run: | sed -i 's@

@

$MY_NAME

@g' index.html echo $MY_NAME - RETRIEVED_SECRET=$(secret-store retrieve-secret "$MY_NAME") + SECRET_HANDLE="${{ secrets.MY_SECRET_NAME }}" + RETRIEVED_SECRET=$(secret-store retrieve-secret "$SECRET_HANDLE") echo "::add-mask::$RETRIEVED_SECRET" echo "We retrieved our masked secret: $RETRIEVED_SECRET" - name: Setup Pages From 2e9d6e2539bb70fdcd2a18b3378e7b4f0ed435b6 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Tue, 25 Apr 2023 07:37:18 +0300 Subject: [PATCH 17/27] Update static.yml --- .github/workflows/static.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 916d09e..d703f21 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -34,11 +34,10 @@ jobs: - name: Update data file run: | sed -i 's@

@

$MY_NAME

@g' index.html - echo $MY_NAME + echo "$MY_NAME" + echo $NEW_NAME SECRET_HANDLE="${{ secrets.MY_SECRET_NAME }}" - RETRIEVED_SECRET=$(secret-store retrieve-secret "$SECRET_HANDLE") - echo "::add-mask::$RETRIEVED_SECRET" - echo "We retrieved our masked secret: $RETRIEVED_SECRET" + echo "We retrieved our masked secret: $SECRET_HANDLE" - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact From d4825e6c576b726533ff820d2bf03c739cde5678 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Tue, 25 Apr 2023 07:41:32 +0300 Subject: [PATCH 18/27] Update static.yml --- .github/workflows/static.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index d703f21..12e89e8 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -1,7 +1,7 @@ # Simple workflow for deploying static content to GitHub Pages name: Deploy static content to Pages env: - MY_NAME: ${{ secrets.MY_SECRET_NAME }} + MY_NAME: ${{ vars.NEW_NAME }} on: # Runs on pushes targeting the default branch push: @@ -34,10 +34,7 @@ jobs: - name: Update data file run: | sed -i 's@

@

$MY_NAME

@g' index.html - echo "$MY_NAME" - echo $NEW_NAME - SECRET_HANDLE="${{ secrets.MY_SECRET_NAME }}" - echo "We retrieved our masked secret: $SECRET_HANDLE" + echo ${{ vars.NEW_NAME }} - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact From f8fe197eceebb0836ea18b06d6c06857b65b214c Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Tue, 25 Apr 2023 07:44:03 +0300 Subject: [PATCH 19/27] Update static.yml --- .github/workflows/static.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 12e89e8..f13d5c0 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -33,8 +33,8 @@ jobs: uses: actions/checkout@v3 - name: Update data file run: | - sed -i 's@

@

$MY_NAME

@g' index.html - echo ${{ vars.NEW_NAME }} + sed -i 's@

@

${{ vars.NEW_NAME }}

@g' index.html + - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact From 91fe7c5cb1f00a5f03d8187c882a85ee2524a45b Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Tue, 25 Apr 2023 07:50:53 +0300 Subject: [PATCH 20/27] Update static.yml --- .github/workflows/static.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index f13d5c0..4b06077 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -37,6 +37,9 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v3 + - name: Update data file 2 + run: | + sed -i 's@

@

${{ vars.NEW_NAME }}

@g' index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: From 8cc6044a820686d0ac0e7077725b8f20e5334681 Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Tue, 25 Apr 2023 07:54:51 +0300 Subject: [PATCH 21/27] Update static.yml --- .github/workflows/static.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 4b06077..6daac31 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -1,7 +1,5 @@ # Simple workflow for deploying static content to GitHub Pages name: Deploy static content to Pages -env: - MY_NAME: ${{ vars.NEW_NAME }} on: # Runs on pushes targeting the default branch push: @@ -31,15 +29,12 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Update data file - run: | - sed -i 's@

@

${{ vars.NEW_NAME }}

@g' index.html - + - name: Setup Pages uses: actions/configure-pages@v3 - name: Update data file 2 run: | - sed -i 's@

@

${{ vars.NEW_NAME }}

@g' index.html + sed -i 's@

@

${{ vars.MY_NAME }}

@g' index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: From fae4ad64075eee6dd2c0a0b4e3e94aec25bf1d1f Mon Sep 17 00:00:00 2001 From: MentorChITA <89519994+mentorchita@users.noreply.github.com> Date: Tue, 3 Oct 2023 22:53:57 +0300 Subject: [PATCH 22/27] Update static.yml --- .github/workflows/static.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 6daac31..54575d0 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -29,17 +29,19 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - + - name: Setup Pages uses: actions/configure-pages@v3 - name: Update data file 2 run: | - sed -i 's@

@

${{ vars.MY_NAME }}

@g' index.html + sed -i 's@

@

${{ vars.MY_NAME }}

@g' index.html + cat index.html - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: # Upload entire repository path: '.' + - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v1 From 468e352f061e306e2dca5777a130c7b7806361bc Mon Sep 17 00:00:00 2001 From: chitawebui131 <98182757+chitawebui131@users.noreply.github.com> Date: Tue, 22 Oct 2024 19:44:53 +0300 Subject: [PATCH 23/27] Update index.html --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 2500377..1814eca 100644 --- a/index.html +++ b/index.html @@ -27,6 +27,7 @@

DevOps Fundamentals

Learn how to excel in fusing operations and development

+

Ihor

From cc362cf77921be69b5805e89ba31f2cdde903d8f Mon Sep 17 00:00:00 2001 From: chitawebui131 <98182757+chitawebui131@users.noreply.github.com> Date: Mon, 2 Dec 2024 19:38:07 +0200 Subject: [PATCH 24/27] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 1814eca..e0cba50 100644 --- a/index.html +++ b/index.html @@ -27,7 +27,7 @@

DevOps Fundamentals

Learn how to excel in fusing operations and development

-

Ihor

+

DevOps

From 585186d20a373df0195b734f5faca060c90e0680 Mon Sep 17 00:00:00 2001 From: chitawebui131 <98182757+chitawebui131@users.noreply.github.com> Date: Sun, 8 Dec 2024 18:47:07 +0200 Subject: [PATCH 25/27] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index e0cba50..c85520d 100644 --- a/index.html +++ b/index.html @@ -27,7 +27,7 @@

DevOps Fundamentals

Learn how to excel in fusing operations and development

-

DevOps

+

DevOps 1294!

From 068ce729deaca00b1beb7d009cc9f505fc0fdccf Mon Sep 17 00:00:00 2001 From: chitawebui131 <98182757+chitawebui131@users.noreply.github.com> Date: Mon, 27 Jan 2025 19:31:07 +0200 Subject: [PATCH 26/27] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index c85520d..2c5cba5 100644 --- a/index.html +++ b/index.html @@ -27,7 +27,7 @@

DevOps Fundamentals

Learn how to excel in fusing operations and development

-

DevOps 1294!

+

DevOps 1320!

From a6c850838d80575d6c6d86869210bd9f52d15701 Mon Sep 17 00:00:00 2001 From: chitawebui131 <98182757+chitawebui131@users.noreply.github.com> Date: Tue, 25 Mar 2025 19:30:32 +0200 Subject: [PATCH 27/27] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 2c5cba5..7172c56 100644 --- a/index.html +++ b/index.html @@ -27,7 +27,7 @@

DevOps Fundamentals

Learn how to excel in fusing operations and development

-

DevOps 1320!

+

DevOps 1346-ja!