Skip to content

Commit

Permalink
Merge pull request #157 from marcoandre1/hotfix/testUbuntuLatest
Browse files Browse the repository at this point in the history
[FEATURE]: Hotfix/test ubuntu latest
  • Loading branch information
marcoandre1 authored Jan 15, 2023
2 parents d86231d + a10f4d8 commit e5b6cbb
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-on-master-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:
jobs:
# Single deploy job since we're just deploying
deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# CHANGELOG

## v2.0.5

- Add `"puppeteerArgs": ["--no-sandbox", "--disable-setuid-sandbox"]` in `package.json` as recommended in [README](https://github.com/stereobooster/react-snap#containers-and-other-restricted-environments):

> Puppeteer (Headless Chrome) may fail due to sandboxing issues. To get around this, you may use:
> `"puppeteerArgs": ["--no-sandbox", "--disable-setuid-sandbox"]`
> Read more about [puppeteer troubleshooting](https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md).
- Set `ubuntu-latest` in Github Actions workflow. The proposed `puppeteer` fix should fix the issue: [There is a phenomenon in which the build does not end in the GitHub Actions (Linux Latest) environment.](https://github.com/stereobooster/react-snap/issues/571)

## v2.0.4

- Fix #147 language switch button closes correctly when language is choose.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "modokemdev-website",
"version": "2.0.4",
"version": "2.0.5",
"description": "Modokemdev website created using create-react-app",
"main": "index.js",
"private": true,
Expand Down Expand Up @@ -59,6 +59,9 @@
"eslintConfig": {
"extends": "react-app"
},
"reactSnap": {
"puppeteerArgs": ["--no-sandbox", "--disable-setuid-sandbox"]
},
"browserslist": [
">0.2%",
"not dead",
Expand Down
2 changes: 1 addition & 1 deletion src/server/defaultState.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export const defaultState = {
bio: [
{
language: "en",
text: "Personal blog using minimal-mistakes theme for jekyll .",
text: "Personal blog using minimal-mistakes theme for jekyll.",
},
{
language: "fr",
Expand Down

0 comments on commit e5b6cbb

Please sign in to comment.