We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f514be5 commit 1c30d7cCopy full SHA for 1c30d7c
.github/workflows/docker.yaml
@@ -51,6 +51,24 @@ jobs:
51
docker image push "${PUB_IMAGE}"
52
}
53
echo "${{ secrets.DOCKER_IO_PASS }}" | publish
54
+
55
+ - name : Get binary from docker
56
+ if : env.IS_RELEASE == 'true'
57
+ run : |
58
+ docker create -ti --name container "${DOCKER_IMAGE}" bash
59
+ docker cp container:/home/pyth/pyth-client/target/deploy/pyth_oracle.so .
60
+ docker rm -f container
61
62
+ - name : Publish binary
63
64
+ uses: svenstaro/upload-release-action@v2
65
+ with:
66
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
67
+ file: ./pyth_oracle.so
68
+ asset_name: pyth_oracle.so
69
+ tag: ${{ github.ref }}
70
+ overwrite: true
71
72
pinning:
73
runs-on: ubuntu-latest
74
steps:
0 commit comments