From c9fb06d02849b22ebf9f81e9c111fa93fe680526 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kami=C5=84ski?= Date: Wed, 31 Jul 2024 11:28:55 +0200 Subject: [PATCH] let's see if it works --- .github/workflows/publish.yml | 25 +++++++++++++++++++++++++ Cargo.toml | 1 + 2 files changed, 26 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 00000000..c182a2d3 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,25 @@ +name: Publish to Cargo + +on: + push: + branches: [ master ] + +jobs: + publish: + runs-on: ubuntu-latest + + name: 'publish' + + # Reference your environment variables + environment: cargo + + steps: + - uses: actions/checkout@v3 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + override: true + - uses: katyo/publish-crates@v2 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} + dry-run: true \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 9b03b5fc..6277ccbe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,6 +17,7 @@ authors = [ "Dan Brownstein <@dan-starkware>", "Federico Carrone <@unbalancedparentheses>", "Jonathan Lei <@xJonathanLEI>", + "Maciej KamiƄski <@maciejka>", ] edition = "2021" repository = "https://github.com/starknet-io/types-rs"