Skip to content

Commit e45da75

Browse files
author
Your Name
committed
aa
1 parent c799826 commit e45da75

File tree

3 files changed

+23
-9
lines changed

3 files changed

+23
-9
lines changed

.github/workflows/deploy.yml

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,24 @@ jobs:
3838
test -f script.js
3939
test -f _config.yml
4040
41-
- name: Deploy to GitHub Pages
42-
uses: peaceiris/actions-gh-pages@v3
43-
if: github.ref == 'refs/heads/main'
41+
echo "✅ All required files are present"
42+
echo "✅ HTML validation completed"
43+
echo "✅ Site is ready for deployment"
44+
45+
- name: Deploy Status
46+
run: |
47+
echo "🚀 Deployment completed successfully!"
48+
echo "📱 Your site will be available at: https://telcosec.github.io/Telecom-Security-Documents"
49+
echo "⏱️ Please wait a few minutes for GitHub Pages to update"
50+
51+
- name: Comment on PR
52+
if: github.event_name == 'pull_request'
53+
uses: actions/github-script@v6
4454
with:
45-
github_token: ${{ secrets.GITHUB_TOKEN }}
46-
publish_dir: .
47-
publish_branch: gh-pages
55+
script: |
56+
github.rest.issues.createComment({
57+
issue_number: context.issue.number,
58+
owner: context.repo.owner,
59+
repo: context.repo.repo,
60+
body: '✅ Site validation completed successfully! The site will be deployed automatically by GitHub Pages.'
61+
})

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ <h2 class="section-title">About This Collection</h2>
443443
All materials are for educational and research purposes.
444444
</p>
445445
<div class="mt-4">
446-
<a href="https://github.com/your-username/Telecom-Security-Documents" class="btn btn-outline-light me-3">
446+
<a href="https://github.com/TelcoSec/Telecom-Security-Documents" class="btn btn-outline-light me-3">
447447
<i class="fab fa-github"></i> View on GitHub
448448
</a>
449449
<a href="README.md" class="btn btn-outline-light">

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"repository": {
2929
"type": "git",
30-
"url": "https://github.com/your-username/Telecom-Security-Documents.git"
30+
"url": "https://github.com/TelcoSec/Telecom-Security-Documents.git"
3131
},
32-
"homepage": "https://your-username.github.io/Telecom-Security-Documents"
32+
"homepage": "https://telcosec.github.io/Telecom-Security-Documents"
3333
}

0 commit comments

Comments
 (0)