fix: update URLs and fix workflow authentication

- Replace pezkuwi.js.org with pezkuwichain.app domain
- Replace jacogr/pezkuwi-js-apps with pezkuwichain/pezkuwi-apps Docker image
- Fix GH_PAT_BOT secret issue by using GITHUB_TOKEN
- Update GitHub org references from pezkuwi-js to pezkuwichain
- Update issue template to point to docs.pezkuwichain.io

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-08 00:00:20 +03:00
parent 6cc99ea3ea
commit 87854ee7a1
4 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ title: Unavailable chain endpoints {{ date | date('ddd, MMM D YYYY, h:mm:ss a')
labels: ['ci'] labels: ['ci']
--- ---
cc @pezkuwi-js/notifications cc @pezkuwichain/notifications
Some configured endpoints are not available. Some configured endpoints are not available.
+2 -2
View File
@@ -1,9 +1,9 @@
<!-- <!--
For general support, howto, coding and bundling questions, please For general support, howto, coding and bundling questions, please
use the Bizinikiwi & Pezkuwi StackExchange at visit the Pezkuwi documentation at
https://bizinikiwi.stackexchange.com/ https://docs.pezkuwichain.io/
and get other ecosystem developers involved. This issues in this and get other ecosystem developers involved. This issues in this
repository are meant for the tracking of feature requests and bug repository are meant for the tracking of feature requests and bug
+6 -6
View File
@@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
token: ${{ secrets.GH_PAT_BOT }} token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
node-version: 'lts/*' node-version: 'lts/*'
@@ -28,8 +28,8 @@ jobs:
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }} CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
CRUST_SEEDS: ${{ secrets.CRUST_SEEDS }} CRUST_SEEDS: ${{ secrets.CRUST_SEEDS }}
GH_PAGES_SRC: packages/apps/build GH_PAGES_SRC: packages/apps/build
GH_PAT: ${{ secrets.GH_PAT_BOT }} GH_PAT: ${{ secrets.GITHUB_TOKEN }}
GH_RELEASE_GITHUB_API_TOKEN: ${{ secrets.GH_PAT_BOT }} GH_RELEASE_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
PINATA_API_KEY: ${{ secrets.PINATA_API_KEY }} PINATA_API_KEY: ${{ secrets.PINATA_API_KEY }}
PINATA_SECRET_KEY: ${{ secrets.PINATA_SECRET_KEY }} PINATA_SECRET_KEY: ${{ secrets.PINATA_SECRET_KEY }}
@@ -60,18 +60,18 @@ jobs:
strategy: strategy:
matrix: matrix:
# Removed `macos-latest` since notarization errors. # Removed `macos-latest` since notarization errors.
# ref: https://github.com/polkadot-js/apps/issues/10486 # ref: https://github.com/pezkuwichain/pezkuwi-apps/issues/10486
os: [ubuntu-latest, windows-latest] os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
token: ${{ secrets.GH_PAT_BOT }} token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
node-version: 'lts/*' node-version: 'lts/*'
# Removed `macos-latest` since notarization errors. # Removed `macos-latest` since notarization errors.
# ref: https://github.com/polkadot-js/apps/issues/10486 # ref: https://github.com/pezkuwichain/pezkuwi-apps/issues/10486
# - name: Prepare for app notarization (macOS) # - name: Prepare for app notarization (macOS)
# if: startsWith(matrix.os, 'macos') # if: startsWith(matrix.os, 'macos')
# # Import Apple API key for app notarization on macOS # # Import Apple API key for app notarization on macOS
+6 -6
View File
@@ -2,7 +2,7 @@
A Portal into the Pezkuwi and Bizinikiwi networks. Provides a view and interaction layer from a browser. A Portal into the Pezkuwi and Bizinikiwi networks. Provides a view and interaction layer from a browser.
This can be accessed as a hosted application via https://pezkuwi.js.org/apps/ or you can access the IPFS hosted version via https://pezkuwi.js.org/apps/ipfs (via hash) or https://dotapps.io (via ipns) to explore any of the supported Pezkuwi and Bizinikiwi chains. This can be accessed as a hosted application via https://pezkuwichain.app or you can access the IPFS hosted version via https://pezkuwichain.app/ipfs (via hash) to explore any of the supported Pezkuwi and Bizinikiwi chains.
If you run one or more IPFS node(s), pinning the UI (which only gets updated on releases) will make it faster for you and others. You can find details about that below in the IPFS chapter below. If you run one or more IPFS node(s), pinning the UI (which only gets updated on releases) will make it faster for you and others. You can find details about that below in the IPFS chapter below.
@@ -18,7 +18,7 @@ The repo is split into a number of packages, each representing an application.
Contributions are welcome! Contributions are welcome!
To start off, this repo (along with others in the [@pezkuwi](https://github.com/pezkuwi-js/) family) uses yarn workspaces to organize the code. As such, after cloning dependencies _should_ be installed via `yarn`, not via npm, the latter will result in broken dependencies. To start off, this repo (along with others in the [@pezkuwi](https://github.com/pezkuwichain/) family) uses yarn workspaces to organize the code. As such, after cloning dependencies _should_ be installed via `yarn`, not via npm, the latter will result in broken dependencies.
To get started - To get started -
@@ -35,13 +35,13 @@ To get started -
You can run a docker container via - You can run a docker container via -
``` ```
docker run --rm -it --name pezkuwi-ui -e WS_URL=ws://someip:9944 -p 80:80 jacogr/pezkuwi-js-apps:latest docker run --rm -it --name pezkuwi-ui -e WS_URL=ws://someip:9944 -p 80:80 pezkuwichain/pezkuwi-apps:latest
``` ```
To build a docker container containing local changes - To build a docker container containing local changes -
``` ```
docker build -t jacogr/pezkuwi-js-apps -f docker/Dockerfile . docker build -t pezkuwichain/pezkuwi-apps -f docker/Dockerfile .
``` ```
When using these Docker commands, you can access the UI via http://localhost:80 (or just http://localhost) When using these Docker commands, you can access the UI via http://localhost:80 (or just http://localhost)
@@ -53,7 +53,7 @@ IPFS allows sharing files in a decentralized manner in a similar fashion the pez
You can pin with the following command: You can pin with the following command:
``` ```
curl -s https://pezkuwi.js.org/apps/ipfs/pin.json | jq -jr .IpfsHash | xargs -0 -I CID ipfs pin add --progress CID curl -s https://pezkuwichain.app/apps/ipfs/pin.json | jq -jr .IpfsHash | xargs -0 -I CID ipfs pin add --progress CID
``` ```
Here is a script you can save as `/usr/local/bin/pezkuwijs-ipfs-pin.sh`: Here is a script you can save as `/usr/local/bin/pezkuwijs-ipfs-pin.sh`:
@@ -62,7 +62,7 @@ Here is a script you can save as `/usr/local/bin/pezkuwijs-ipfs-pin.sh`:
#!/usr/bin/env bash #!/usr/bin/env bash
IPFS='/usr/local/bin/ipfs' IPFS='/usr/local/bin/ipfs'
curl -s https://pezkuwi.js.org/apps/ipfs/pin.json | jq -jr .IpfsHash | xargs -0 -I CID $IPFS pin add --progress CID curl -s https://pezkuwichain.app/apps/ipfs/pin.json | jq -jr .IpfsHash | xargs -0 -I CID $IPFS pin add --progress CID
``` ```
I suggest to run the script once. The output should be similar to (the CID/Hash will very likely be different though): I suggest to run the script once. The output should be similar to (the CID/Hash will very likely be different though):