You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/website.yml
+8-6
Original file line number
Diff line number
Diff line change
@@ -21,16 +21,18 @@ jobs:
21
21
contents: write # for JamesIves/github-pages-deploy-action to push changes in repo
22
22
runs-on: ubuntu-latest
23
23
steps:
24
-
- uses: actions/checkout@v2
24
+
- uses: actions/checkout@v3
25
25
- name: Use Node.js 14
26
-
uses: actions/setup-node@v1
26
+
uses: actions/setup-node@v3
27
27
with:
28
28
node-version: 14.x
29
29
- name: Install & Build
30
30
run: bash ./ghPagesPre.sh
31
31
- name: Deploy to Github Pages
32
-
uses: JamesIves/github-pages-deploy-action@3.7.1
32
+
uses: JamesIves/github-pages-deploy-action@v4.3.3
33
33
with:
34
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35
-
BRANCH: gh-pages
36
-
FOLDER: . # the root, because the provided script already moves files
34
+
token: ${{ secrets.GITHUB_TOKEN }}
35
+
branch: gh-pages
36
+
folder: . # the root, because the provided script already moves files
37
+
git-config-email: <> # disable gh-pages commits to have a email assigned to them
38
+
git-config-name: 'actions-deploy'# set a custom name, so that the original author of the commit that triggered the website build is not associated with this commit, which was not made by them
Copy file name to clipboardExpand all lines: docs/guides/supported-systems.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Currently Supported platforms:
12
12
Officially Supported Architectures:
13
13
<!--Platfrom taken from "MongoBinaryDownloadUrl.translateArch"-->
14
14
-`x64` / `x86_64`
15
-
-`ia32` / `i686` / `i386`
15
+
-~~`ia32` / `i686` / `i386`~~ (There are only binaries up to ~3.2 and [will be removed with the next MMS version](https://github.com/nodkz/mongodb-memory-server/issues/638))
16
16
17
17
:::note
18
18
On systems with native translation, will work when overwriting the architecture with `MONGOMS_ARCH=x64`
0 commit comments