Skip to content

Commit e5f45e4

Browse files
committed
Fix CI issue with Chrome sandbox
1 parent 20e8cd1 commit e5f45e4

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/continuous-integration-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
wget -nv https://raw.githubusercontent.com/Lucas-C/dotfiles_and_notes/master/bin/md2html.js
3939
sudo apt install graphviz
4040
41-
- name: Generating HTML pages 🏗️
41+
- name: Generating HTML pages & PDF docs 🏗️
4242
run: |
4343
GIT_TAG=${{ steps.tag.outputs.version }}
4444
echo GIT_TAG=$GIT_TAG

BladesInTheDark/BitD-DeepCuts-NouvellesRegles.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<img src="BitD-DeepCuts-TitleNoBg-Black.png" class="size23">
1+
<img src="BitD-DeepCuts-TitleNoBg-Black.png" alt="Blades in the Dark - Deep Cuts" class="size23">
22

33
# Nouvelles règles
44
<br>
@@ -100,9 +100,9 @@ Discutez avec le MJ pour créer un projet à long terme (ou autre chose) pour su
100100
Le traumatisme de chaque personnage est personnel, et le chemin vers la guérison devrait l’être aussi.
101101

102102
<br><br>
103-
<img src="wesnoth-oracle1-cc-by-sa-greyscale.webp" class="size19">
103+
<img src="wesnoth-oracle1-cc-by-sa-greyscale.webp" img="Blind character" class="size19">
104104
<p style="font-size: .9rem; text-align: center">
105-
<a href="https://wiki.wesnoth.org/Wesnoth:Copyrights#The_Battle_for_Wesnoth_-_Visual_and_Audio_Contributions">Oracle - Battle of Wesnoth<a> - <a href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a>
105+
<a href="https://wiki.wesnoth.org/Wesnoth:Copyrights#The_Battle_for_Wesnoth_-_Visual_and_Audio_Contributions">Oracle - Battle of Wesnoth</a> - <a href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a>
106106
</p>
107107

108108
<!--

puppeteer-print.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ const DEFAULT_MARGIN = 25;
88
const url = `file://${path.resolve(process.argv[2])}`
99
const outFilePath = process.argv[3]
1010
console.log(`${url} -> ${outFilePath}`)
11-
const browser = await puppeteer.launch({ headless: true })
11+
const browser = await puppeteer.launch({
12+
// Unsafe but else fails in Github Actions pipeline:
13+
args: ['--no-sandbox', '--disable-setuid-sandbox'],
14+
headless: true
15+
})
1216
try {
1317
const page = await browser.newPage()
1418
await page.goto(url, { waitUntil: 'networkidle2' })

0 commit comments

Comments
 (0)