Skip to content

Commit 17a58dd

Browse files
committed
ci: update github workflow paths after repository renaming
1 parent 9c8db99 commit 17a58dd

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/publish-python.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
fetch-depth: 0
2929

3030
- name: "Configure Git safe directory"
31-
run: git config --global --add safe.directory /__w/bdkpython/bdkpython
31+
run: git config --global --add safe.directory /__w/bdk-python/bdk-python
3232

3333
- name: "Install Rust 1.84.1"
3434
uses: actions-rs/toolchain@v1
@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions/upload-artifact@v4
5050
with:
5151
name: bdkpython-manylinux_2_28_x86_64-${{ matrix.python }}
52-
path: /home/runner/work/bdkpython/bdkpython/dist/*.whl
52+
path: /home/runner/work/bdk-python/bdk-python/dist/*.whl
5353

5454
build-macos-arm64-wheels:
5555
name: "Build macOS arm64 wheel"
@@ -89,7 +89,7 @@ jobs:
8989
uses: actions/upload-artifact@v4
9090
with:
9191
name: bdkpython-macos-arm64-${{ matrix.python }}
92-
path: /Users/runner/work/bdkpython/bdkpython/dist/*.whl
92+
path: /Users/runner/work/bdk-python/bdk-python/dist/*.whl
9393

9494
build-macos-x86_64-wheels:
9595
name: "Build macOS x86_64 wheel"
@@ -128,7 +128,7 @@ jobs:
128128
- uses: actions/upload-artifact@v4
129129
with:
130130
name: bdkpython-macos-x86_64-${{ matrix.python }}
131-
path: /Users/runner/work/bdkpython/bdkpython/dist/*.whl
131+
path: /Users/runner/work/bdk-python/bdk-python/dist/*.whl
132132

133133
build-windows-wheels:
134134
name: "Build Windows wheel"
@@ -165,7 +165,7 @@ jobs:
165165
uses: actions/upload-artifact@v4
166166
with:
167167
name: bdkpython-win-${{ matrix.python }}
168-
path: D:\a\bdkpython\bdkpython\dist\*.whl
168+
path: D:\a\bdk-python\bdk-python\dist\*.whl
169169

170170
publish-pypi:
171171
name: "Publish on PyPI"

.github/workflows/test-python.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
fetch-depth: 0
3232

3333
- name: "Configure Git safe directory"
34-
run: git config --global --add safe.directory /__w/bdkpython/bdkpython
34+
run: git config --global --add safe.directory /__w/bdk-python/bdk-python
3535

3636
- name: "Install Rust 1.84.1"
3737
uses: actions-rs/toolchain@v1
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/upload-artifact@v4
5858
with:
5959
name: bdkpython-manylinux_2_28_x86_64-${{ matrix.python }}
60-
path: /home/runner/work/bdkpython/bdkpython/dist/*.whl
60+
path: /home/runner/work/bdk-python/bdk-python/dist/*.whl
6161

6262
build-macos-arm64-wheels:
6363
name: "Build and test macOS arm64 wheels"
@@ -103,7 +103,7 @@ jobs:
103103
uses: actions/upload-artifact@v4
104104
with:
105105
name: bdkpython-macos-arm64-${{ matrix.python }}
106-
path: /Users/runner/work/bdkpython/bdkpython/dist/*.whl
106+
path: /Users/runner/work/bdk-python/bdk-python/dist/*.whl
107107

108108
build-macos-x86_64-wheels:
109109
name: "Build and test macOS x86_64 wheels"
@@ -146,7 +146,7 @@ jobs:
146146
uses: actions/upload-artifact@v4
147147
with:
148148
name: bdkpython-macos-x86_64-${{ matrix.python }}
149-
path: /Users/runner/work/bdkpython/bdkpython/dist/*.whl
149+
path: /Users/runner/work/bdk-python/bdk-python/dist/*.whl
150150

151151
build-windows-wheels:
152152
name: "Build and test Windows wheels"
@@ -184,10 +184,10 @@ jobs:
184184
uses: actions/upload-artifact@v4
185185
with:
186186
name: bdkpython-windows-${{ matrix.python }}
187-
path: D:\a\bdkpython\bdkpython\dist\*.whl
187+
path: D:\a\bdk-python\bdk-python\dist\*.whl
188188

189189
- name: "Install dependencies"
190-
run: Get-ChildItem 'D:\a\bdkpython\bdkpython\dist\*.whl' | ForEach-Object {pip install $_.FullName}
190+
run: Get-ChildItem 'D:\a\bdk-python\bdk-python\dist\*.whl' | ForEach-Object {pip install $_.FullName}
191191
shell: powershell
192192

193193
- name: "Run tests"
@@ -205,7 +205,7 @@ jobs:
205205
fetch-depth: 0
206206

207207
- name: "Configure Git safe directory"
208-
run: git config --global --add safe.directory /__w/bdkpython/bdkpython
208+
run: git config --global --add safe.directory /__w/bdk-python/bdk-python
209209

210210
- name: "Install Ruff"
211211
run: curl -LsSf https://astral.sh/ruff/install.sh | sh

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121

2222
[project.urls]
2323
Homepage = "https://github.com/bitcoindevkit"
24-
Repository = "https://github.com/bitcoindevkit/bdkpython"
24+
Repository = "https://github.com/bitcoindevkit/bdk-python"
2525

2626
[tool.setuptools]
2727
include-package-data = true

0 commit comments

Comments
 (0)