Skip to content

Commit

Permalink
Merge pull request #8 from CSBiology/init_gh-pages
Browse files Browse the repository at this point in the history
Update main with up to date website
  • Loading branch information
Freymaurer authored Sep 21, 2023
2 parents b920507 + 22f3cba commit 7007db7
Show file tree
Hide file tree
Showing 504 changed files with 2,142 additions and 729 deletions.
12 changes: 12 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"fornax": {
"version": "0.15.1",
"commands": [
"fornax"
]
}
}
}
54 changes: 54 additions & 0 deletions .github/workflows/build-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# This is a basic workflow to help you get started with Actions

name: build-gh-pages

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main", "init_gh-pages" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build-and-deploy:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v3

- name: Setup .NET 3.1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.301

- name: Setup .NET 5
uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.102

- name: Restore dotnet tools
run: dotnet tool restore

- name: Setup Env Variable
run: set

- name: Build
run: npm run build
env:
OLAT_TOKEN: ${{ secrets.OLAT_TOKEN }}

- name: deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: ./src/_public # The folder the action should deploy.
CLEAN: true # Automatically remove deleted files from the deploy branch
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -355,3 +355,4 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/
olat.p
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,19 @@
# csbiology.github.io
The csb website.

# Local Development

## Setup

1. `dotnet tool restore`
2. `npm install`
3. Add olat password as `src/loaders/olat.p`, containing only the password as raw string.

# Update css from scss

- `npm run update-css`, will create minified css from `src/style/scss/main.scss`.

## Run

1. `npm run fornax`
2. Go to [http://127.0.0.1:8080](http://127.0.0.1:8080).
Binary file removed content/images/team/schneider.jpg
Binary file not shown.
89 changes: 0 additions & 89 deletions generators/layout.fsx

This file was deleted.

59 changes: 0 additions & 59 deletions generators/sections/teaching.fsx

This file was deleted.

Loading

0 comments on commit 7007db7

Please sign in to comment.