-
Notifications
You must be signed in to change notification settings - Fork 4
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 #82 from impresso/epic/doppio
Epic/doppio
- Loading branch information
Showing
358 changed files
with
20,230 additions
and
4,474 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Fetch and update Releases Data | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
update_releases: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
|
||
- name: Install dependencies | ||
working-directory: ./scripts/nodejs | ||
run: yarn install | ||
|
||
- name: Update Releases JSON | ||
run: | | ||
node github-releases.js | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Commit and push if it changed | ||
uses: stefanzweifel/git-auto-commit-action@v5 |
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,42 @@ | ||
name: Fetch Zotero Data | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
fetch_data: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
|
||
- name: Install dependencies | ||
working-directory: ./scripts/nodejs | ||
run: yarn install | ||
|
||
- name: Download Zotero BIBJSON for Presentations | ||
working-directory: ./scripts/nodejs | ||
run: node zotero.js download-collection 1486708 8PHTET8E _data/presentations.json | ||
env: | ||
ZOTERO_TOKEN: ${{ secrets.ZOTERO_TOKEN }} | ||
|
||
- name: Download Zotero BIBJSON for Publications | ||
working-directory: ./scripts/nodejs | ||
run: node zotero.js download-collection 1486708 SPFKFKMN _data/publications.json | ||
env: | ||
ZOTERO_TOKEN: ${{ secrets.ZOTERO_TOKEN }} | ||
|
||
- name: Download Zotero BIBJSON for Datasets | ||
working-directory: ./scripts/nodejs | ||
run: node zotero.js download-collection 1486708 UK7WNFH7 _data/datasets.json | ||
env: | ||
ZOTERO_TOKEN: ${{ secrets.ZOTERO_TOKEN }} | ||
|
||
- name: Commit and push if it changed | ||
uses: stefanzweifel/git-auto-commit-action@v5 |
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,4 +1,9 @@ | ||
_site/ | ||
.sass-cache/ | ||
.jekyll-metadata | ||
assets/images/.DS_Store | ||
assets/images/.DS_Store | ||
node_modules/ | ||
*.log | ||
vendor | ||
*.code-workspace | ||
.DS_Store |
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,20 @@ | ||
{ | ||
"overrides": [ | ||
{ | ||
"files": "*.html", | ||
"options": { | ||
"parser": "html", | ||
"htmlWhitespaceSensitivity": "ignore", | ||
"embeddedLanguageFormatting": "auto" | ||
} | ||
}, | ||
{ | ||
"files": "*.liquid", | ||
"options": { | ||
"parser": "html", | ||
"htmlWhitespaceSensitivity": "ignore", | ||
"embeddedLanguageFormatting": "off" | ||
} | ||
} | ||
] | ||
} |
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,2 +1,4 @@ | ||
source 'https://rubygems.org' | ||
gem 'github-pages', group: :jekyll_plugins | ||
gem "empty-jekyll-theme" # This is the theme we're using | ||
gem "github-pages", "~> 228", group: :jekyll_plugins | ||
gem "webrick", "~> 1.8" |
Oops, something went wrong.