Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
standard version 1
Browse files Browse the repository at this point in the history
  • Loading branch information
okedeji committed Apr 25, 2024
1 parent 0290e04 commit 8493351
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Deploy to PyPI

on:
push:
tags:
- 'v*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Publish to PyPI
uses: pypa/[email protected]
with:
password: ${{ secrets.PYPI_API_TOKEN }}
6 changes: 3 additions & 3 deletions allocmd/templates/config.yaml.j2
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# place all worker configuration variables here

name: {{ name }}
faucet_url: https://faucet.testnet.allora.network:8443/
faucet_url: https://faucet.testnet.allora.network/
worker:
boot_nodes: /dns4/heads.testnet.allora.network/tcp/9010/p2p/12D3KooWGAA1C2UNyj51QaGX5aXnVzRqeaqhyhUFFJixdqshwWC3
chain_rpc_address: https://allora-rpc.testnet.allora.network:8443/
boot_nodes: /dns4/head-0.testnet.allora.network/tcp/9010/p2p/12D3KooWGAA1C2UNyj51QaGX5aXnVzRqeaqhyhUFFJixdqshwWC3
chain_rpc_address: https://allora-rpc.testnet.allora.network/
chain_topic_id: {{ topic_id }}
mnemonic: ""
hex_coded_pk: ""
Expand Down
2 changes: 1 addition & 1 deletion allocmd/utilities/constants.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
cliVersion = "0.2.3"
cliVersion = "1.0.0"

0 comments on commit 8493351

Please sign in to comment.