Skip to content

Commit

Permalink
Merge branch 'main' into redesign
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Mar 23, 2022
2 parents 4afb4de + 8a08b71 commit 64b5f32
Show file tree
Hide file tree
Showing 90 changed files with 836 additions and 480 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/calibreapp-image-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Compress Images
uses: calibreapp/image-actions@1.1.0
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches-ignore:
- "dependabot/**"
pull_request:
workflow_dispatch:

env:
FORCE_COLOR: 2
Expand All @@ -16,12 +17,12 @@ jobs:

steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: "${{ env.NODE }}"
node-version: ${{ env.NODE }}
cache: npm

- run: java -version
Expand All @@ -33,7 +34,7 @@ jobs:
run: npm test

- name: Upload docs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: github.repository == 'twbs/blog' && github.ref == 'refs/heads/main'
with:
name: docs
Expand All @@ -47,10 +48,10 @@ jobs:

steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Download docs
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: docs
path: ./_site/
Expand Down
11 changes: 10 additions & 1 deletion .markdownlint.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,16 @@
"MD013": false,
"MD024": false,
"MD026": false,
"MD033": false,
"MD033": {
"allowed_elements": [
"a",
"br",
"hr",
"kbd",
"script",
"span"
]
},
"MD035": {
"style": "---"
},
Expand Down
8 changes: 5 additions & 3 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ permalinks:
related:
includeNewer: false
indices:
# - name: keywords
# weight: 10
- name: keywords
weight: 100
- name: tags
weight: 80
- name: date
weight: 20
weight: 10
threshold: 80
toLower: false

Expand Down

0 comments on commit 64b5f32

Please sign in to comment.