Skip to content

Commit

Permalink
Add Flox environment, bump Hugo to 0.110.0 (#668)
Browse files Browse the repository at this point in the history
# Summary

The "version" of docsy that we use is generating the issue described in
#639 with the latest versions of `hugo`. According to my tests the
latest working version of `hugo` is
[v0.110.0](https://github.com/gohugoio/hugo/releases/tag/v0.110.0).

In addition to specifying the latest working version of `hugo` in the
docs to contribute, I am also adding an [environment with
flox](https://flox.dev/docs/tutorials/sharing-environments/#sharing-environments-with-files).
See also related discussion in #637.

Merging this PR fixes #639. However, we may also want to discuss whether
to [migrate docsy from git submodules to hugo
modules](https://www.docsy.dev/docs/updating/convert-site-to-module/) so
the latest version of both `hugo` and `docsy` can be used.

---

**Related issue :**
#639
  • Loading branch information
sebastian-luna-valero authored Aug 29, 2024
1 parent 2a27cf0 commit 73287b0
Show file tree
Hide file tree
Showing 8 changed files with 521 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .flox/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
run/
cache/
lib/
log/
4 changes: 4 additions & 0 deletions .flox/env.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "EGI-documentation",
"version": 1
}
Loading

1 comment on commit 73287b0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (6)

aarch
gettin
linux
postgres
sourced
venv

To accept these unrecognized words as correct, you could run the following commands

... in a clone of the [email protected]:EGI-Federation/documentation.git repository
on the main branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/EGI-Federation/documentation/actions/runs/10610179017/attempts/1'
Available 📚 dictionaries could cover words (expected and unrecognized) not in the 📘 dictionary

This includes both expected items (26) from .github/actions/spelling/expect.txt and unrecognized words (6)

Dictionary Entries Covers Uniquely
cspell:npm/dict/npm.txt 302 2 1
cspell:scala/dict/scala.txt 153 2
cspell:filetypes/filetypes.txt 264 2
cspell:node/dict/node.txt 891 2
cspell:cpp/src/compiler-clang-attributes.txt 46 1 1

Consider adding them (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

      with:
        extra_dictionaries:
          cspell:npm/dict/npm.txt
          cspell:scala/dict/scala.txt
          cspell:filetypes/filetypes.txt
          cspell:node/dict/node.txt
          cspell:cpp/src/compiler-clang-attributes.txt

To stop checking additional dictionaries, add (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

check_extra_dictionaries: ''

Please sign in to comment.