rings-node 0.2.2

Chord DHT implementation with ICE
Documentation
name: Auto Release

on:
  push:
    branches:
      - "master"

jobs:
  pre_release_linux:
    name: Pre Release Linux
    timeout-minutes: 20
    runs-on: "ubuntu-22.04"
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0

      - name: Setup rust toolchain
        run: rustup show

      # If you need to reset the cache version, increment the number after `v`
      - uses: Swatinem/rust-cache@v1
        with:
          sharedKey: pre-release-v1

      - name: Build
        run: cargo build --features node --no-default-features --verbose --release

      - uses: "marvinpinto/action-automatic-releases@latest"
        with:
          repo_token: "${{ secrets.GITHUB_TOKEN }}"
          automatic_release_tag: latest
          prerelease: true
          title: "Development Build"
          files: |
            LICENSE
            target/release/rings