Skip to content

Commit

Permalink
updating the documentation and setting up ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
virgiliolino committed Aug 8, 2023
1 parent 2ee1b91 commit f70e53d
Show file tree
Hide file tree
Showing 24 changed files with 1,151 additions and 792 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Substrate Node template",
"name": "Substrate Node popi",
"context": "..",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
Expand All @@ -15,7 +15,7 @@
9944
],
"onCreateCommand": ["cargo build", "cargo check"],
"postStartCommand": "./target/debug/node-template --dev --ws-external",
"postStartCommand": "./target/debug/node-popi --dev --ws-external",
"menuActions": [
{"id": "polkadotjs",
"label": "Open PolkadotJS Apps",
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ contact_links:
For general problems with Substrate or related technologies, please search here first
for solutions, by keyword and tags. If you discover no solution, please then ask and questions in our community! We highly encourage everyone also share their understanding by answering questions for others.
- name: Feature Requests and PRs to be submitted upstream
url: https://github.com/paritytech/substrate/tree/master/bin/node-template
url: https://github.com/paritytech/substrate/tree/master/bin/node-popi
about: |
This template is generated on tagged releases upstream, it is not independently updated and maintained.
This popi is generated on tagged releases upstream, it is not independently updated and maintained.
Please direct all suggestions for improvements and PRs upstream.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ env:
RUSTUP_MAX_RETRIES: 10
CARGO_TERM_COLOR: always
# Set an environment variable (that can be overriden) for the Docker Repo
DOCKER_REPO: tripleight/node-template
DOCKER_REPO: tripleight/node-popi

defaults:
run:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
# Build and upload the binary to the new release
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: node-template
bin: node-popi
target: ${{ matrix.target }}
tar: all
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -113,8 +113,8 @@ jobs:
if: (matrix.target == 'x86_64-unknown-linux-gnu')
uses: actions/upload-artifact@v3
with:
name: node-template
path: ${{ github.workspace }}/target/x86_64-unknown-linux-gnu/release/node-template
name: node-popi
path: ${{ github.workspace }}/target/x86_64-unknown-linux-gnu/release/node-popi

build-image:
# The type of runner that the job will run on
Expand All @@ -138,7 +138,7 @@ jobs:
- name: Download x86_64 linux binary
uses: actions/download-artifact@v3
with:
name: node-template
name: node-popi
path: ${{ github.workspace }}

# Build and push 2 images, One with the version tag and the other with latest tag
Expand Down
Loading

0 comments on commit f70e53d

Please sign in to comment.