diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..c182a2d --- /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 9b03b5f..6277ccb 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"