-
-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #457 from EvanNotFound/dev
v2.8.0
- Loading branch information
Showing
178 changed files
with
3,409 additions
and
3,086 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
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Build JS and CSS | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
paths: | ||
- 'source/js/**' | ||
- 'source/css/**' | ||
- 'source/build/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false # Prevent using GITHUB_TOKEN automatically | ||
fetch-depth: 0 # Fetch all history for accurate file diffs | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20.x' # Specify your Node.js version | ||
|
||
- name: Install Dependencies | ||
run: npm install | ||
|
||
- name: Build Project | ||
run: npm run build | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.name "github-actions" | ||
git config user.email "github-actions@github.com" | ||
- name: Commit and Push Changes | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
git add source/build/js source/build/css | ||
# Check if there are any changes | ||
if ! git diff --cached --quiet; then | ||
git commit -m "ci: build and update source/build/js and source/build/css [skip ci]" | ||
git push "https://$GITHUB_ACTOR:$GITHUB_TOKEN@github.com/$GITHUB_REPOSITORY.git" HEAD:${GITHUB_REF#refs/heads/} | ||
else | ||
echo "No changes to commit" | ||
fi |
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
|
||
- run: npm ci | ||
|
||
- run: npm run build:css | ||
- run: npm run build | ||
|
||
- run: npm publish | ||
env: | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
npm run build |
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
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 |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# ---------------------------------------- | ||
# Traduction du site | ||
# ---------------------------------------- | ||
search: recherche... | ||
toc: Sur cette page | ||
prev: Précédent | ||
next: Suivant | ||
prev_posts: Articles précédents | ||
next_posts: Articles suivants | ||
page: Page %d | ||
recent_posts: Articles récents | ||
share: Partager | ||
powered_by: "POWERED BY %s" | ||
theme: THEME | ||
rss_feed: Flux RSS | ||
category: Catégorie | ||
categories: Catégories | ||
tag: Tag | ||
tags: Tags | ||
post: Post | ||
posts: Posts | ||
tagcloud: Nuage de tags | ||
comment: Commentaire | ||
comments: Commentaires | ||
home: Accueil | ||
archive: Archive | ||
archives: Archives | ||
top: TOP | ||
sticky: Sticky | ||
go-back-home: Retour à l'accueil | ||
|
||
# ---------------------------------------- | ||
# Traduction du menu | ||
# ---------------------------------------- | ||
about: À propos | ||
changelog: Journal des modifications | ||
links: Liens | ||
link: Lien | ||
friends: Amis | ||
friend: Ami | ||
timeline: Chronologie | ||
shuoshuo: Shuoshuo | ||
|
||
# ---------------------------------------- | ||
# Nombre de sites Web | ||
# ---------------------------------------- | ||
site_uv: VISITEURS | ||
site_pv: NOMBRE TOTAL DE PAGES VUES | ||
read_more: Lire la suite | ||
wordcount: Mots | ||
min2read: Min | ||
status: Status | ||
|
||
# ---------------------------------------- | ||
# Pied de page | ||
# ---------------------------------------- | ||
runtime: Blog en ligne depuis | ||
days: Jours | ||
hours: Hrs | ||
minutes: Min | ||
seconds: Sec | ||
optimized_by: et Propulsé par Evan | ||
rights: Tous droits réservés | ||
site_posts: "%s posts au total" | ||
site_wordcount: "%s mots au total" | ||
|
||
# ---------------------------------------- | ||
# Post | ||
# ---------------------------------------- | ||
copyright: | ||
author: Auteur | ||
title: Titre | ||
link: Lien | ||
create_time: Créé à | ||
update_time: Mis à jour à | ||
license_title: Licence | ||
license_content: "Cette œuvre est sous licence %s." | ||
all_rights_reserved: "Tous droits réservés à © %s" | ||
public_domain: "Cette œuvre est dans le domaine public." | ||
|
||
ago: | ||
second: "Il y a %s secondes" | ||
minute: "Il y a %s minutes" | ||
hour: "Il y a %s heures" | ||
day: "Il y a %s jours" | ||
week: "Il y a %s semaines" | ||
month: "Il y a %s mois" | ||
year: "Il y a %s années" | ||
|
||
create_time: Créé | ||
update_time: Mis à jour | ||
expired: "Ce message a été écrit il y a %s jours et son contenu peut être obsolète." |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.