Skip to content

Commit 77742ee

Browse files
committed
chore: update urls to forked repo
1 parent 8c0eb30 commit 77742ee

File tree

4 files changed

+57
-59
lines changed

4 files changed

+57
-59
lines changed

.github/workflows/docs.yml

Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
1-
name: Deploy Rust Docs to GitHub Pages
2-
3-
on:
4-
push:
5-
branches:
6-
- main
7-
8-
concurrency:
9-
group: "pages"
10-
cancel-in-progress: false
11-
12-
jobs:
13-
build:
14-
runs-on: ubuntu-latest
15-
16-
steps:
17-
- name: Checkout sources
18-
uses: actions/checkout@v4
19-
20-
- name: Install stable toolchain
21-
uses: actions-rs/toolchain@v1
22-
with:
23-
profile: minimal
24-
toolchain: stable
25-
override: true
26-
27-
- name: Build Rust Documentation
28-
run: |
29-
cargo doc --no-deps --document-private-items
30-
echo "<meta http-equiv=\"refresh\" content=\"0; url=bpcon\">" > target/doc/index.html
31-
32-
- name: Upload artifact
33-
uses: actions/upload-pages-artifact@v3
34-
with:
35-
path: ./target/doc
36-
37-
deploy:
38-
runs-on: ubuntu-latest
39-
needs: build
40-
41-
permissions:
42-
pages: write
43-
id-token: write
44-
45-
environment:
46-
name: docs
47-
url: ${{ steps.deployment.outputs.page_url }}
48-
49-
steps:
50-
- name: Deploy to GitHub Pages
51-
id: deployment
52-
uses: actions/deploy-pages@v4
1+
#name: Deploy Rust Docs to GitHub Pages
2+
#
3+
#on:
4+
# push:
5+
# branches:
6+
# - main
7+
#
8+
#concurrency:
9+
# group: "pages"
10+
# cancel-in-progress: false
11+
#
12+
#jobs:
13+
# build:
14+
# runs-on: ubuntu-latest
15+
#
16+
# steps:
17+
# - name: Checkout sources
18+
# uses: actions/checkout@v4
19+
#
20+
# - name: Install stable toolchain
21+
# uses: actions-rs/toolchain@v1
22+
# with:
23+
# profile: minimal
24+
# toolchain: stable
25+
# override: true
26+
#
27+
# - name: Build Rust Documentation
28+
# run: |
29+
# cargo doc --no-deps --document-private-items
30+
# echo "<meta http-equiv=\"refresh\" content=\"0; url=bpcon\">" > target/doc/index.html
31+
#
32+
# - name: Upload artifact
33+
# uses: actions/upload-pages-artifact@v3
34+
# with:
35+
# path: ./target/doc
36+
#
37+
# deploy:
38+
# runs-on: ubuntu-latest
39+
# needs: build
40+
#
41+
# permissions:
42+
# pages: write
43+
# id-token: write
44+
#
45+
# environment:
46+
# name: docs
47+
# url: ${{ steps.deployment.outputs.page_url }}
48+
#
49+
# steps:
50+
# - name: Deploy to GitHub Pages
51+
# id: deployment
52+
# uses: actions/deploy-pages@v4

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,3 @@ jobs:
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2727
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
28-

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ version = "0.1.0"
44
edition = "2021"
55
description = "BPCon: A Byzantine Fault-Tolerant Consensus Protocol Implementation in Rust."
66
license = "MIT"
7-
repository = "https://github.com/distributed-lab/bpcon"
8-
homepage = "https://github.com/distributed-lab/bpcon#readme"
9-
documentation = "https://distributed-lab.github.io/bpcon/"
7+
repository = "https://github.com/NikitaMasych/bpcon"
8+
homepage = "https://github.com/NikitaMasych/bpcon#readme"
109
keywords = ["consensus", "byzantine", "protocol", "distributed-systems", "blockchain"]
1110
categories = ["algorithms"]
1211
authors = ["Distributed Lab"]

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/distributed-lab/bpcon"
10+
"url": "https://github.com/NikitaMasych/bpcon"
1111
},
1212
"keywords": [
1313
"Rust",
@@ -16,9 +16,9 @@
1616
],
1717
"author": "DistributedLab",
1818
"bugs": {
19-
"url": "https://github.com/distributed-lab/bpcon/issues"
19+
"url": "https://github.com/NikitaMasych/bpcon/issues"
2020
},
21-
"homepage": "https://github.com/distributed-lab/bpcon#readme",
21+
"homepage": "https://github.com/NikitaMasych/bpcon#readme",
2222
"devDependencies": {
2323
"prettier": "^3.3.3",
2424
"semantic-release": "24.1.2",

0 commit comments

Comments
 (0)