Skip to content

Commit a782c85

Browse files
committed
fix: revert to original
1 parent 73eab34 commit a782c85

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/update-versions.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Update Lotus Version
33
on:
44
workflow_dispatch:
55
pull_request:
6-
types: [opened, reopened, synchronize]
6+
types: [opened, reopened]
77

88
jobs:
99
update-version:
@@ -34,14 +34,8 @@ jobs:
3434
- name: Run update script
3535
run: |
3636
node update-versions.js ${{ env.LATEST_VERSION }}
37-
38-
- name: Check for changes
39-
id: git-check
40-
run: |
41-
git diff --exit-code || echo "CHANGES=true" >> $GITHUB_ENV
4237
4338
- name: Create Pull Request
44-
if: env.CHANGES == 'true'
4539
uses: peter-evans/create-pull-request@v5
4640
with:
4741
commit-message: 'Chore: update Lotus version references to ${{ env.LATEST_VERSION }}'
@@ -50,6 +44,6 @@ jobs:
5044
Automated PR to update Lotus version references to ${{ env.LATEST_VERSION }}
5145
5246
This PR was automatically generated by GitHub Actions.
53-
branch: update-lotus-version-${{ env.LATEST_VERSION }}
47+
branch: update-lotus-version
5448
base: main
5549
delete-branch: true

nodes/full-nodes/basic-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ To install Lotus on your computer, follow these steps:
1212
2. Once you have downloaded the binary file, extract the contents to a directory of your choice. For example, if you are using Linux, you can extract the contents to the `/usr/local/bin directory` by running the command:
1313

1414
```sh
15-
sudo tar -C /usr/local/bin -xzf lotus-1.30.1-linux-amd64.tar.gz
15+
sudo tar -C /usr/local/bin -xzf lotus-1.31.1-linux-amd64.tar.gz
1616
```
1717

1818
3. After extracting the contents, navigate to the `lotus` directory in your terminal. For example, if you extracted the contents to `/usr/local/bin`, you can navigate to the lotus directory by running the command:
1919

2020
```sh
21-
cd /usr/local/bin/lotus-1.30.1
21+
cd /usr/local/bin/lotus-1.31.1
2222
```
2323

2424
4. Run the `lotus` binary file to start the Lotus daemon. You can do this by running the command:

0 commit comments

Comments
 (0)