Browse Source

chore(lazer): add crate publish workflow for pyth-lazer-client (#2323)

* chore: add crate publish workflow for pyth-lazer-client

* chore: remove unused workflow
Tejas Badadare 9 months ago
parent
commit
da2436a739
1 changed files with 4 additions and 4 deletions
  1. 4 4
      .github/workflows/publish-rust-lazer-client.yml

+ 4 - 4
.github/workflows/publish-rust-lazer-sdk.yml → .github/workflows/publish-rust-lazer-client.yml

@@ -1,12 +1,12 @@
-name: Publish Rust package pyth-lazer-sdk to crates.io
+name: Publish Rust package pyth-lazer-client to crates.io
 
 on:
   push:
     tags:
-      - rust-pyth-lazer-sdk-v*
+      - rust-pyth-lazer-client-v*
 jobs:
   publish-pyth-lazer-sdk:
-    name: Publish Rust package pyth-lazer-sdk to crates.io
+    name: Publish Rust package pyth-lazer-client to crates.io
     runs-on: ubuntu-latest
     steps:
       - name: Checkout sources
@@ -15,4 +15,4 @@ jobs:
       - run: cargo publish --token ${CARGO_REGISTRY_TOKEN}
         env:
           CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
-        working-directory: "lazer/sdk/solana"
+        working-directory: "lazer/sdk/rust/client"