Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update site with latest infra and theme from 2023-11 #31

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 39 additions & 16 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,30 +1,40 @@
# Standard gitattributes config

# Set the default behavior, in case people don't have core.autocrlf set.
* text eol=lf


# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.

*.txt text

# Source code
*.bash text eol=lf
*.c text
*.cpp text
*.csh text eol=lf
*.fish text eol=lf
*.inc text
*.ipynb text
*.h text
*.py text
*.py3 text
*.pxd text
*.pyw text
*.pyx text
*.ksh text eol=lf
*.ps1 text
*.pxd text diff=python
*.py text diff=python
*.py3 text diff=python
*.pyi text diff=python
*.pyw text diff=python
*.pyx text diff=python
*.qss text
*.r text
*.R text
*.rb text
*.rmd text
*.Rmd text
*.rnw text
*.Rnw text
*.sh text
*.sh text eol=lf
*.zsh text eol=lf

# Documentation
*.adoc text
Expand All @@ -34,6 +44,8 @@
*.md text
*.po text
*.pot text
*.rd text
*.Rd text
*.rst text
*.tex text
*.TeX text
Expand Down Expand Up @@ -77,23 +89,26 @@
*.geojson text
*.gml text
*.kml text
*.Rdata text
*.RData text
*.sql text
*.tab text
*.tsv text
*.wkt text

# Other text files
*.diff -text
*.patch -text

# Special files
.*rc text
.checkignore text
.ciocheck text
.ciocopyright text
.editorconfig text
.gitattributes text
.gitconfig text
.gitignore text
.gitmodules text
.gitattributes export-ignore
.gitconfig export-ignore
.gitignore export-ignore
.gitmodules export-ignore
.gitkeep export-ignore
*.lektorproject text
.nojekyll text
.project text
Expand All @@ -120,9 +135,10 @@ MANIFEST.in text


# Declare files that will always have CRLF line endings on checkout.
*.bat text eol=crlf
*.vbs text eol=crlf
*.ps1 text eol=crlf
*.bat text eol=crlf
*.cmd text eol=crlf
*.vbs text eol=crlf
*.vb text eol=crlf


# Denote all files that are truly binary and should not be modified.
Expand All @@ -144,6 +160,7 @@ MANIFEST.in text
*.pyd binary
*.pyo binary
*.rdb binary
*.Rdb binary
*.rdx binary
*.Rdx binary
*.rpm binary
Expand Down Expand Up @@ -176,6 +193,11 @@ MANIFEST.in text
*.parquet binary
*.pickle binary
*.pkl binary
*.rdata binary
*.Rdata binary
*.RData binary
*.rda binary
*.Rda binary
*.rds binary
*.Rds binary
*.sav binary
Expand Down Expand Up @@ -260,6 +282,7 @@ MANIFEST.in text
*.gz binary
*.lz binary
*.lzma binary
*.pyz binary
*.rar binary
*.sz binary
*.tar binary
Expand Down
8 changes: 0 additions & 8 deletions .github/actions/build-project/action.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .github/actions/setup-and-install/action.yml

This file was deleted.

47 changes: 47 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Build the site and deploy it to GitHub pages
name: Build

on: # yamllint disable-line rule:truthy
push:
branches:
- master
- main
- '*.*'
- 'staging*'
pull_request:
branches:
- master
- main
- '*.*'
- 'staging*'

jobs:
build:
name: Build and Deploy

runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
shell: bash
run: ./ci/install.sh
- name: List dependencies
shell: bash
run: pip list
- name: Build site
shell: bash
run: ./ci/build.sh
- name: Deploy to GitHub Pages
if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') && github.event_name != 'pull_request'
uses: JamesIves/github-pages-deploy-action@v4
with:
FOLDER: ./website-lektor-icon-build
CLEAN: true # Remove deleted files from the deploy branch
36 changes: 0 additions & 36 deletions .github/workflows/deploy.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/test.yml

This file was deleted.

Loading