diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index fc720102..eb5ac5b9 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -60,6 +60,13 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }} + - name: Render wallet DAG + run: python3 ./zcash-issue-dag.py + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }} + DAG_VIEW: wallet + - name: Copy the index page run: cp ./index.html ./public diff --git a/zcash-issue-dag.py b/zcash-issue-dag.py index 09455fb9..a72c14d1 100755 --- a/zcash-issue-dag.py +++ b/zcash-issue-dag.py @@ -31,8 +31,17 @@ CORE_REPOS = { 305835578: ('zcash', 'orchard'), } +WALLET_REPOS = { + 85334928: ('zcash', 'librustzcash'), + 151763639: ('zcash', 'zcash-android-wallet-sdk'), + 185480114: ('zcash', 'ZcashLightClientKit'), + 223814143: ('zcash', 'zcash-android-wallet'), + 225922879: ('zcash', 'zcash-ios-wallet'), +} + REPO_SETS = { 'core': CORE_REPOS, + 'wallet': WALLET_REPOS, } REPOS = REPO_SETS[DAG_VIEW]