Skip to content

Commit

Permalink
remove CI steps to create git tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jstewmon committed Jul 22, 2023
1 parent a7ff4ed commit cbf8223
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 33 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: "[email protected]",
}
})
distribute-py-wheels:
name: "Distribute Python Wheels"
needs: [ "distribute" ]
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit cbf8223

Please sign in to comment.