From cbf82233d11f860659265be17e1de7fc01cca688 Mon Sep 17 00:00:00 2001 From: Jonathan Stewmon Date: Sat, 22 Jul 2023 08:41:55 -0500 Subject: [PATCH] remove CI steps to create git tags --- .github/workflows/ci.yml | 32 -------------------------------- Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 33 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb3b260..f4beaff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -354,38 +354,6 @@ jobs: TWINE_USERNAME: "__token__" TWINE_PASSWORD: "${{ secrets.PYPI_TOKEN }}" - - name: "Add Git Tag Ref for Version" - if: "${{ steps.cargo-version.outputs.new == 'true' }}" - uses: "actions/github-script@v2" - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - script: | - github.git.createRef({ - owner: "${{ github.repository_owner }}", - repo: "json-logic-rs", - ref: "refs/tags/v${{ steps.get-version.outputs.version }}", - sha: "${{ github.sha }}", - }) - - - name: "Add GitHub Annotated Tag for Version" - if: "${{ steps.cargo-version.outputs.new == 'true' }}" - uses: "actions/github-script@v2" - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - script: | - github.git.createTag({ - owner: "${{ github.repository_owner }}", - repo: "json-logic-rs", - tag: "v${{ steps.get-version.outputs.version }}", - message: "Version ${{ steps.get-version.outputs.version }}", - object: "${{ github.sha }}", - type: "commit", - tagger: { - name: "${{ github.actor }}", - email: "msplanchard@gmail.com", - } - }) - distribute-py-wheels: name: "Distribute Python Wheels" needs: [ "distribute" ] diff --git a/Cargo.toml b/Cargo.toml index e9ee71e..c65ef01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" name = "jsonlogic-rs" readme = "README.md" repository = "https://github.com/bestowinc/json-logic-rs" -version = "0.3.1" +version = "0.3.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html