Skip to content

Commit a3ea5a0

Browse files
authored
Merge pull request #27 from GeauxJD/configure-gh-pages
Configure gh pages
2 parents 94be203 + d8f76e8 commit a3ea5a0

File tree

6 files changed

+80
-1
lines changed

6 files changed

+80
-1
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Deployment to GitHub Pages
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main # <-- specify the branch you want to deploy from
8+
pull_request:
9+
10+
env:
11+
REPO_NAME: ${{ github.event.repository.name }}
12+
REPO_OWNER: ${{ github.repository_owner }}
13+
14+
jobs:
15+
deploy:
16+
runs-on: ubuntu-22.04
17+
concurrency:
18+
group: ${{ github.workflow }}-${{ github.ref }}
19+
steps:
20+
- uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
23+
24+
- name: Setup Hugo
25+
uses: peaceiris/actions-hugo@v3
26+
with:
27+
hugo-version: '0.125.5'
28+
extended: true
29+
30+
- name: Setup Node
31+
uses: actions/setup-node@v4
32+
with:
33+
node-version: '20'
34+
cache: 'npm'
35+
cache-dependency-path: '**/package-lock.json'
36+
37+
- run: npm ci
38+
- run: hugo --baseURL https://${REPO_OWNER}.github.io/${REPO_NAME} --minify
39+
40+
- name: Deploy
41+
uses: peaceiris/actions-gh-pages@v4
42+
if: ${{ github.ref == 'refs/heads/main' }} # <-- specify same branch as above here
43+
with:
44+
github_token: ${{ secrets.GITHUB_TOKEN }}

config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
baseURL = "https://glossary.openssf.org/"
1+
baseURL = "https://ossf.github.io/glossary"
22
title = "OpenSSF Glossary"
33

44
enableRobotsTXT = true

content/en/cisa.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: CISA
3+
status: Completed
4+
category: organization
5+
tags: ["organization", "acronym", ""]
6+
---
7+
8+
The Cybersecurity and Infrastructure Security Agency (CISA) of the United States government serves as the national coordinator for critical infrastructure security and resilience. The agency's stated mission is to "lead the national effort to understand, manage, and reduce risk to our cyber and physical infrastructure."
9+
10+
Source: https://www.cisa.gov/about

content/en/mitre.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: MITRE
3+
status: Completed
4+
category: organization
5+
tags: ["organization", "acronym", ""]
6+
---
7+
8+
MITRE is a not-for-profit company in the United States founded in 1958 to serve as objective advisers in systems engineering to government agencies, both military and civilian. MITRE operates federally funded research and development centers (FFRDCs) including the National Cybersecurity FFRDC. The NCF is sponsored by the National Institute of Standards and Technology (NIST) and supports NIST's Cybersecurity Center of Excellence, a collaborative hub for government, industry, and academia to build practical solutions to cybersecurity challenges.
9+
10+
Source: https://www.mitre.org/

content/en/nist.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: NIST
3+
status: Completed
4+
category: organization
5+
tags: ["organization", "acronym", ""]
6+
---
7+
8+
The National Institute of Standards and Technology (NIST) was founded in 1901 and is part of the U.S. Department of Commerce. NIST's stated mission is "to promote U.S. innovation and industrial competitiveness by advancing measurement science, standards, and technology in ways that enhance economic security and improve our quality of life."
9+
10+
Source: https://www.nist.gov/about-nist

wordlist.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ CVE
6161
CVSS
6262
cwe
6363
cyber
64+
cybersecurity
6465
daniel
6566
DAST
6667
datacenter
@@ -100,6 +101,8 @@ extra
100101
faas
101102
facelessuser
102103
faq
104+
FFRDC
105+
FFRDCs
103106
filenotfounderror
104107
filesystem
105108
flaxman
@@ -165,8 +168,10 @@ namespace
165168
namespaces
166169
navbar
167170
nccoe
171+
NCF
168172
Nginx
169173
nist
174+
NIST's
170175
observability
171176
oci
172177
oliveira

0 commit comments

Comments
 (0)