Skip to content

Commit 6593219

Browse files
committed
fix: update dokcer workflow to compy files correctly
1 parent 863a7d8 commit 6593219

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/docker.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ jobs:
6161
run : |
6262
docker create -ti --name container "${DOCKER_IMAGE}" bash
6363
docker cp container:/home/pyth/pyth-client/target/pyth/pythnet/pyth_oracle_pythnet.so .
64+
docker cp container:/home/pyth/pyth-client/target/pyth/pythnet/pyth_oracle_pythnet_no_accumulator_v2.so .
6465
docker rm -f container
65-
66+
6667
- name : Publish Pythnet binary
6768
if : env.IS_ORACLE_RELEASE == 'true'
6869
uses: svenstaro/upload-release-action@133984371c30d34e38222a64855679a414cb7575
@@ -77,8 +78,8 @@ jobs:
7778
uses: svenstaro/upload-release-action@133984371c30d34e38222a64855679a414cb7575
7879
with:
7980
repo_token: ${{ secrets.GITHUB_TOKEN }}
80-
file: ./pyth_oracle_pythnet_no_accumulator.so
81-
asset_name: pyth_oracle_pythnet_no_default_accumulator_v2.so
81+
file: ./pyth_oracle_pythnet_no_accumulator_v2.so
82+
asset_name: pyth_oracle_pythnet_no_accumulator_v2.so
8283
tag: ${{ github.ref }}
8384

8485
pinning:

0 commit comments

Comments
 (0)