Skip to content

Commit a8b892c

Browse files
Anil KommareddiCopilot
andcommitted
Initial commit: migrate opensourcerisk.org to GitHub Pages
- Static export from Simply Static WordPress plugin - Added .nojekyll to bypass Jekyll processing - Added CNAME for www.opensourcerisk.org custom domain - Added GitHub Actions deploy workflow (deploys on push to main) - Fixed absolute opensourcerisk.org URLs to relative paths in 5 HTML files Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 parents  commit a8b892c

5,978 files changed

Lines changed: 1068848 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: false
16+
17+
jobs:
18+
deploy:
19+
environment:
20+
name: github-pages
21+
url: ${{ steps.deployment.outputs.page_url }}
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@v4
26+
27+
- name: Setup Pages
28+
uses: actions/configure-pages@v5
29+
30+
- name: Upload artifact
31+
uses: actions/upload-pages-artifact@v3
32+
with:
33+
path: '.'
34+
35+
- name: Deploy to GitHub Pages
36+
id: deployment
37+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# macOS
2+
.DS_Store
3+
4+
# Original export (source, not needed in the deployed repo)
5+
old-site-export/

.nojekyll

Whitespace-only changes.

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.opensourcerisk.org

author/alexis-davidacadia-inc/index.html

Lines changed: 394 additions & 0 deletions
Large diffs are not rendered by default.

author/amardeepd/index.html

Lines changed: 394 additions & 0 deletions
Large diffs are not rendered by default.

author/amit-deodagmail-com/index.html

Lines changed: 394 additions & 0 deletions
Large diffs are not rendered by default.

author/anistor/index.html

Lines changed: 394 additions & 0 deletions
Large diffs are not rendered by default.

author/arlojasper/index.html

Lines changed: 394 additions & 0 deletions
Large diffs are not rendered by default.

author/asset-management/index.html

Lines changed: 394 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)