diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 75955a0..9f1f0b5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,7 +15,8 @@ jobs: - uses: actions/checkout@v3 - uses: taiki-e/create-gh-release-action@v1 with: - token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for creating GitHub Releases. + # GitHub token for creating GitHub Releases. + token: ${{ secrets.GITHUB_TOKEN }} upload-assets: strategy: @@ -29,7 +30,7 @@ jobs: - uses: actions/checkout@v3 - uses: taiki-e/upload-rust-binary-action@v1 with: - bin: namehash # Comma-separated list of binary names to build and upload. - tar: none # On which platform to distribute the `.tar.gz` file. - zip: none # On which platform to distribute the `.zip` file. - token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for uploading assets to GitHub Releases. + # Comma-separated list of binary names to build and upload. + bin: namehash + # GitHub token for uploading assets to GitHub Releases. + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Cargo.lock b/Cargo.lock index 6b48362..b99c6ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -193,7 +193,7 @@ checksum = "ece97ea872ece730aed82664c424eb4c8291e1ff2480247ccf7409044bc6479f" [[package]] name = "namehash" -version = "0.1.1" +version = "0.1.2" dependencies = [ "clap", "hex", diff --git a/Cargo.toml b/Cargo.toml index ce43686..8fc2434 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "namehash" -version = "0.1.1" +version = "0.1.2" edition = "2021" description = "CLI program for hashing domain names according to EIP-137" homepage = "https://github.com/supleed2/namehash-rs"