-
Notifications
You must be signed in to change notification settings - Fork 25
v0.1.0: ready to replace existing substrate subcommand #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
80b0d94
work with latest substrate
liamaharon 2b85c22
sync code with latest substrate
liamaharon 722902f
remove sc_cli shared params
liamaharon 28d9dd0
fix comment
liamaharon 0aaac86
add missing stable commands
liamaharon e55ea4d
migrate tests
liamaharon 552655b
test rust docs action
liamaharon 13e1bdc
install protoc
liamaharon ac51c96
add rusttoolchain
liamaharon 17a1f87
remove rust-toolchain
liamaharon 9ec0873
add licence
liamaharon d2b13ef
lint
liamaharon cfda821
add toolchain
liamaharon 0061269
try to fix github actions build
liamaharon afd1fb7
docs
liamaharon ff8d5f0
clippy
liamaharon 0955e4d
update homepage
liamaharon ba66524
update cargo.lock
liamaharon 64c8f61
tweak docs
liamaharon 4d08d01
fix no deps arg
liamaharon 8055e80
update readme
liamaharon 1d14feb
update docs
liamaharon 198e164
rust docs workflow
liamaharon 7be1543
update descriptions
liamaharon dddd24a
fix docs link
liamaharon 523dfa2
improve docs
liamaharon e80051f
typo
liamaharon 549278a
update tests
liamaharon 503ebeb
prepare for merging
liamaharon 81ec69d
use latest substrate in tests
liamaharon 0ba460e
try fix test ci
liamaharon a519be5
disable ci tests
liamaharon fd89392
update readme
liamaharon 8746e55
update readme
liamaharon 77cb19f
remove -cli suffix from binary
liamaharon 347c0b2
update tests
liamaharon e47ffcd
use resolver = 2
liamaharon 2119508
set default runtime value
liamaharon affc4c8
remove redundant comment
liamaharon 6d27cb1
test removing rust toolchain from rust-docs.yaml
liamaharon 79ec8e8
minor doc improvement
liamaharon 1749cab
try stable toolchain
liamaharon 27c82fc
organise deps
liamaharon ef307f7
update description
liamaharon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| name: Update rust docs | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - liam-v0.1.0 | ||
|
|
||
| jobs: | ||
| docs: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v2 | ||
|
|
||
| - name: Install Protoc | ||
| uses: arduino/setup-protoc@v1 | ||
| with: | ||
| version: "3.6.1" | ||
|
|
||
| - name: Add wasm32-unknwon-unknown target | ||
| run: rustup target add wasm32-unknown-unknown | ||
|
|
||
| - name: Build docs | ||
| uses: actions-rs/cargo@v1 | ||
| with: | ||
| command: doc | ||
| args: --no-deps | ||
|
|
||
| - name: Deploy to GitHub Pages | ||
| uses: peaceiris/actions-gh-pages@v3 | ||
| with: | ||
| github_token: ${{ secrets.GITHUB_TOKEN }} | ||
| publish_dir: ./target/doc |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.