-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added scp secret laboratory horro game session event webpage
- Loading branch information
JohnLu2004
authored and
JohnLu2004
committed
Oct 21, 2024
1 parent
c0a3743
commit 197ba0f
Showing
683 changed files
with
21,763 additions
and
21,742 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
# Update the NODE_VERSION arg in docker-compose.yml to pick a Node version: 18, 16, 14 | ||
ARG NODE_VERSION=16 | ||
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${NODE_VERSION} | ||
|
||
# VARIANT can be either 'hugo' for the standard version or 'hugo_extended' for the extended version. | ||
ARG VARIANT=hugo_extended | ||
# VERSION can be either 'latest' or a specific version number | ||
ARG VERSION=latest | ||
|
||
# Download Hugo | ||
RUN apt-get update && apt-get install -y ca-certificates openssl git curl && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
case ${VERSION} in \ | ||
latest) \ | ||
export VERSION=$(curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4)}') ;;\ | ||
esac && \ | ||
echo ${VERSION} && \ | ||
case $(uname -m) in \ | ||
aarch64) \ | ||
export ARCH=ARM64 ;; \ | ||
*) \ | ||
export ARCH=64bit ;; \ | ||
esac && \ | ||
echo ${ARCH} && \ | ||
wget -O ${VERSION}.tar.gz https://github.com/gohugoio/hugo/releases/download/v${VERSION}/${VARIANT}_${VERSION}_Linux-${ARCH}.tar.gz && \ | ||
tar xf ${VERSION}.tar.gz && \ | ||
mv hugo /usr/bin/hugo | ||
|
||
# Hugo dev server port | ||
EXPOSE 1313 | ||
|
||
# [Optional] Uncomment this section to install additional OS packages you may want. | ||
# | ||
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | ||
# && apt-get -y install --no-install-recommends <your-package-list-here> | ||
|
||
# [Optional] Uncomment if you want to install more global node packages | ||
# RUN sudo -u node npm install -g <your-package-list-here> | ||
# Update the NODE_VERSION arg in docker-compose.yml to pick a Node version: 18, 16, 14 | ||
ARG NODE_VERSION=16 | ||
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${NODE_VERSION} | ||
|
||
# VARIANT can be either 'hugo' for the standard version or 'hugo_extended' for the extended version. | ||
ARG VARIANT=hugo_extended | ||
# VERSION can be either 'latest' or a specific version number | ||
ARG VERSION=latest | ||
|
||
# Download Hugo | ||
RUN apt-get update && apt-get install -y ca-certificates openssl git curl && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
case ${VERSION} in \ | ||
latest) \ | ||
export VERSION=$(curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4)}') ;;\ | ||
esac && \ | ||
echo ${VERSION} && \ | ||
case $(uname -m) in \ | ||
aarch64) \ | ||
export ARCH=ARM64 ;; \ | ||
*) \ | ||
export ARCH=64bit ;; \ | ||
esac && \ | ||
echo ${ARCH} && \ | ||
wget -O ${VERSION}.tar.gz https://github.com/gohugoio/hugo/releases/download/v${VERSION}/${VARIANT}_${VERSION}_Linux-${ARCH}.tar.gz && \ | ||
tar xf ${VERSION}.tar.gz && \ | ||
mv hugo /usr/bin/hugo | ||
|
||
# Hugo dev server port | ||
EXPOSE 1313 | ||
|
||
# [Optional] Uncomment this section to install additional OS packages you may want. | ||
# | ||
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | ||
# && apt-get -y install --no-install-recommends <your-package-list-here> | ||
|
||
# [Optional] Uncomment if you want to install more global node packages | ||
# RUN sudo -u node npm install -g <your-package-list-here> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.238.0/containers/hugo | ||
{ | ||
"name": "Hugo (Community)", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"args": { | ||
// Update VARIANT to pick hugo variant. | ||
// Example variants: hugo, hugo_extended | ||
// Rebuild the container if it already exists to update. | ||
"VARIANT": "hugo_extended", | ||
// Update VERSION to pick a specific hugo version. | ||
// Example versions: latest, 0.73.0, 0,71.1 | ||
// Rebuild the container if it already exists to update. | ||
"VERSION": "latest", | ||
// Update NODE_VERSION to pick the Node.js version: 12, 14 | ||
"NODE_VERSION": "14" | ||
} | ||
}, | ||
|
||
// Configure tool-specific properties. | ||
"customizations": { | ||
// Configure properties specific to VS Code. | ||
"vscode": { | ||
// Set *default* container specific settings.json values on container create. | ||
"settings": { | ||
"html.format.templating": true | ||
}, | ||
|
||
// Add the IDs of extensions you want installed when the container is created. | ||
"extensions": [ | ||
"bungcip.better-toml", | ||
"davidanson.vscode-markdownlint" | ||
] | ||
} | ||
}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
"forwardPorts": [ | ||
1313 | ||
], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
// "postCreateCommand": "uname -a", | ||
|
||
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | ||
"remoteUser": "node" | ||
} | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.238.0/containers/hugo | ||
{ | ||
"name": "Hugo (Community)", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"args": { | ||
// Update VARIANT to pick hugo variant. | ||
// Example variants: hugo, hugo_extended | ||
// Rebuild the container if it already exists to update. | ||
"VARIANT": "hugo_extended", | ||
// Update VERSION to pick a specific hugo version. | ||
// Example versions: latest, 0.73.0, 0,71.1 | ||
// Rebuild the container if it already exists to update. | ||
"VERSION": "latest", | ||
// Update NODE_VERSION to pick the Node.js version: 12, 14 | ||
"NODE_VERSION": "14" | ||
} | ||
}, | ||
|
||
// Configure tool-specific properties. | ||
"customizations": { | ||
// Configure properties specific to VS Code. | ||
"vscode": { | ||
// Set *default* container specific settings.json values on container create. | ||
"settings": { | ||
"html.format.templating": true | ||
}, | ||
|
||
// Add the IDs of extensions you want installed when the container is created. | ||
"extensions": [ | ||
"bungcip.better-toml", | ||
"davidanson.vscode-markdownlint" | ||
] | ||
} | ||
}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
"forwardPorts": [ | ||
1313 | ||
], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
// "postCreateCommand": "uname -a", | ||
|
||
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | ||
"remoteUser": "node" | ||
} |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* @CarletonComputerScienceSociety/core | ||
* @CarletonComputerScienceSociety/core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
name: Compress Images | ||
on: | ||
pull_request: | ||
# Run Image Actions when JPG, JPEG, PNG or WebP files are added or changed. | ||
# See https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#onpushpull_requestpaths for reference. | ||
paths: | ||
- '**.jpg' | ||
- '**.jpeg' | ||
- '**.png' | ||
- '**.webp' | ||
jobs: | ||
build: | ||
name: calibreapp/image-actions | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Compress Images | ||
uses: calibreapp/image-actions@main | ||
with: | ||
# The `GITHUB_TOKEN` is automatically generated by GitHub and scoped only to the repository that is currently running the action. By default, the action can’t update Pull Requests initiated from forked repositories. | ||
# See https://docs.github.com/en/actions/reference/authentication-in-a-workflow and https://help.github.com/en/articles/virtual-environments-for-github-actions#token-permissions | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} | ||
name: Compress Images | ||
on: | ||
pull_request: | ||
# Run Image Actions when JPG, JPEG, PNG or WebP files are added or changed. | ||
# See https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#onpushpull_requestpaths for reference. | ||
paths: | ||
- '**.jpg' | ||
- '**.jpeg' | ||
- '**.png' | ||
- '**.webp' | ||
jobs: | ||
build: | ||
name: calibreapp/image-actions | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: Compress Images | ||
uses: calibreapp/image-actions@main | ||
with: | ||
# The `GITHUB_TOKEN` is automatically generated by GitHub and scoped only to the repository that is currently running the action. By default, the action can’t update Pull Requests initiated from forked repositories. | ||
# See https://docs.github.com/en/actions/reference/authentication-in-a-workflow and https://help.github.com/en/articles/virtual-environments-for-github-actions#token-permissions | ||
githubToken: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
name: github pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master # Set a branch to deploy | ||
pull_request: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true # Fetch Hugo themes (true OR recursive) | ||
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | ||
|
||
- name: Setup Hugo | ||
uses: peaceiris/actions-hugo@v2 | ||
with: | ||
hugo-version: '0.83.1' | ||
extended: true | ||
|
||
- name: Build | ||
run: hugo --minify | ||
|
||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
if: github.ref == 'refs/heads/master' | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./public | ||
name: github pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master # Set a branch to deploy | ||
pull_request: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true # Fetch Hugo themes (true OR recursive) | ||
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | ||
|
||
- name: Setup Hugo | ||
uses: peaceiris/actions-hugo@v2 | ||
with: | ||
hugo-version: '0.83.1' | ||
extended: true | ||
|
||
- name: Build | ||
run: hugo --minify | ||
|
||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
if: github.ref == 'refs/heads/master' | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
name: Build and Deploy PR Preview to surge | ||
# testing | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build_preview: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Hugo | ||
uses: peaceiris/actions-hugo@v2 | ||
with: | ||
hugo-version: '0.83.1' | ||
extended: true | ||
|
||
- name: Setup base URL env var | ||
run: | | ||
export PRNUMBER=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH") | ||
echo BASEURL="https://carletoncomputersciencesociety-website-build_preview-pr-"$PRNUMBER".surge.sh/" >> $GITHUB_ENV | ||
- name: Report base URL env var | ||
run: echo "${{ env.BASEURL }}" | ||
|
||
- name: Build | ||
run: hugo --baseURL "${{ env.BASEURL }}" | ||
|
||
- name: Deploy to surge | ||
uses: afc163/surge-preview@v1 | ||
id: preview_step | ||
with: | ||
surge_token: "1f147e7d61488c3db6957c80ab45939f" | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
dist: public | ||
failOnError: false | ||
teardown: true | ||
build: | | ||
echo Deploying to surge.sh | ||
name: Build and Deploy PR Preview to surge | ||
# testing | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build_preview: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Hugo | ||
uses: peaceiris/actions-hugo@v2 | ||
with: | ||
hugo-version: '0.83.1' | ||
extended: true | ||
|
||
- name: Setup base URL env var | ||
run: | | ||
export PRNUMBER=$(jq --raw-output .pull_request.number "$GITHUB_EVENT_PATH") | ||
echo BASEURL="https://carletoncomputersciencesociety-website-build_preview-pr-"$PRNUMBER".surge.sh/" >> $GITHUB_ENV | ||
- name: Report base URL env var | ||
run: echo "${{ env.BASEURL }}" | ||
|
||
- name: Build | ||
run: hugo --baseURL "${{ env.BASEURL }}" | ||
|
||
- name: Deploy to surge | ||
uses: afc163/surge-preview@v1 | ||
id: preview_step | ||
with: | ||
surge_token: "1f147e7d61488c3db6957c80ab45939f" | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
dist: public | ||
failOnError: false | ||
teardown: true | ||
build: | | ||
echo Deploying to surge.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: CI | ||
'on': | ||
- push | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install modules | ||
run: | | ||
npm install | ||
- name: Run Prettier | ||
run: | | ||
npm run check | ||
name: CI | ||
'on': | ||
- push | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install modules | ||
run: | | ||
npm install | ||
- name: Run Prettier | ||
run: | | ||
npm run check |
Oops, something went wrong.