Skip to content

Commit 87b84b0

Browse files
authored
fix(ci): remove redundant gh release edit from prerelease steps (#244)
* ci: add alpha release pipeline * fix(ci): remove redundant gh release edit from prerelease steps
1 parent e2d3019 commit 87b84b0

File tree

4 files changed

+86
-4
lines changed

4 files changed

+86
-4
lines changed

.github/workflows/cd.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ jobs:
7979
--define=branch=alpha \
8080
--define=upload_to_repository=true \
8181
publish
82-
gh release edit --prerelease "v$(uv run semantic-release print-version --current)"
8382
env:
8483
GH_TOKEN: ${{ steps.app_token.outputs.token }}
8584
REPOSITORY_USERNAME: __token__
@@ -94,7 +93,6 @@ jobs:
9493
--define=branch=main \
9594
--define=upload_to_repository=true \
9695
publish
97-
gh release edit --prerelease "v$(uv run semantic-release print-version --current)"
9896
env:
9997
GH_TOKEN: ${{ steps.app_token.outputs.token }}
10098
REPOSITORY_USERNAME: __token__
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# algokit_utils.algosdk
2+
3+
Algorand SDK compatibility types - user-facing facade for algokit_algosdk.
4+
5+
Users should import from this module instead of algokit_algosdk directly.
Lines changed: 41 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,41 @@
1-
from algokit_utils.clients.client_manager import * # noqa: F403
2-
from algokit_utils.clients.dispenser_api_client import * # noqa: F403
1+
from algokit_algod_client import AlgodClient
2+
from algokit_algod_client import models as algod_models
3+
from algokit_algod_client.exceptions import UnexpectedStatusError
4+
from algokit_indexer_client import IndexerClient
5+
from algokit_kmd_client import KmdClient
6+
from algokit_utils.clients.client_manager import (
7+
AlgoSdkClients,
8+
ClientManager,
9+
NetworkDetail,
10+
)
11+
from algokit_utils.clients.dispenser_api_client import (
12+
DISPENSER_ACCESS_TOKEN_KEY,
13+
DISPENSER_ASSETS,
14+
DISPENSER_REQUEST_TIMEOUT,
15+
DispenserApiConfig,
16+
DispenserAsset,
17+
DispenserAssetName,
18+
DispenserFundResponse,
19+
DispenserLimitResponse,
20+
TestNetDispenserApiClient,
21+
)
22+
23+
__all__ = [
24+
"DISPENSER_ACCESS_TOKEN_KEY",
25+
"DISPENSER_ASSETS",
26+
"DISPENSER_REQUEST_TIMEOUT",
27+
"AlgoSdkClients",
28+
"AlgodClient",
29+
"ClientManager",
30+
"DispenserApiConfig",
31+
"DispenserAsset",
32+
"DispenserAssetName",
33+
"DispenserFundResponse",
34+
"DispenserLimitResponse",
35+
"IndexerClient",
36+
"KmdClient",
37+
"NetworkDetail",
38+
"TestNetDispenserApiClient",
39+
"UnexpectedStatusError",
40+
"algod_models",
41+
]

src/algokit_utils/common.py

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
"""Common utilities - user-facing facade for algokit_common.
2+
3+
Users should import from this module instead of algokit_common directly.
4+
"""
5+
6+
from algokit_common import (
7+
ADDRESS_LENGTH,
8+
CHECKSUM_BYTE_LENGTH,
9+
HASH_BYTES_LENGTH,
10+
MAX_TRANSACTION_GROUP_SIZE,
11+
MICROALGOS_TO_ALGOS_RATIO,
12+
MIN_TXN_FEE,
13+
PUBLIC_KEY_BYTE_LENGTH,
14+
SIGNATURE_BYTE_LENGTH,
15+
TRANSACTION_ID_LENGTH,
16+
ZERO_ADDRESS,
17+
ProgramSourceMap,
18+
address_from_public_key,
19+
get_application_address,
20+
public_key_from_address,
21+
sha512_256,
22+
)
23+
24+
__all__ = [
25+
"ADDRESS_LENGTH",
26+
"CHECKSUM_BYTE_LENGTH",
27+
"HASH_BYTES_LENGTH",
28+
"MAX_TRANSACTION_GROUP_SIZE",
29+
"MICROALGOS_TO_ALGOS_RATIO",
30+
"MIN_TXN_FEE",
31+
"PUBLIC_KEY_BYTE_LENGTH",
32+
"SIGNATURE_BYTE_LENGTH",
33+
"TRANSACTION_ID_LENGTH",
34+
"ZERO_ADDRESS",
35+
"ProgramSourceMap",
36+
"address_from_public_key",
37+
"get_application_address",
38+
"public_key_from_address",
39+
"sha512_256",
40+
]

0 commit comments

Comments
 (0)