Skip to content

Commit cbf8223

Browse files
committed
remove CI steps to create git tags
1 parent a7ff4ed commit cbf8223

File tree

2 files changed

+1
-33
lines changed

2 files changed

+1
-33
lines changed

.github/workflows/ci.yml

-32
Original file line numberDiff line numberDiff line change
@@ -354,38 +354,6 @@ jobs:
354354
TWINE_USERNAME: "__token__"
355355
TWINE_PASSWORD: "${{ secrets.PYPI_TOKEN }}"
356356

357-
- name: "Add Git Tag Ref for Version"
358-
if: "${{ steps.cargo-version.outputs.new == 'true' }}"
359-
uses: "actions/github-script@v2"
360-
with:
361-
github-token: "${{ secrets.GITHUB_TOKEN }}"
362-
script: |
363-
github.git.createRef({
364-
owner: "${{ github.repository_owner }}",
365-
repo: "json-logic-rs",
366-
ref: "refs/tags/v${{ steps.get-version.outputs.version }}",
367-
sha: "${{ github.sha }}",
368-
})
369-
370-
- name: "Add GitHub Annotated Tag for Version"
371-
if: "${{ steps.cargo-version.outputs.new == 'true' }}"
372-
uses: "actions/github-script@v2"
373-
with:
374-
github-token: "${{ secrets.GITHUB_TOKEN }}"
375-
script: |
376-
github.git.createTag({
377-
owner: "${{ github.repository_owner }}",
378-
repo: "json-logic-rs",
379-
tag: "v${{ steps.get-version.outputs.version }}",
380-
message: "Version ${{ steps.get-version.outputs.version }}",
381-
object: "${{ github.sha }}",
382-
type: "commit",
383-
tagger: {
384-
name: "${{ github.actor }}",
385-
386-
}
387-
})
388-
389357
distribute-py-wheels:
390358
name: "Distribute Python Wheels"
391359
needs: [ "distribute" ]

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT"
99
name = "jsonlogic-rs"
1010
readme = "README.md"
1111
repository = "https://github.com/bestowinc/json-logic-rs"
12-
version = "0.3.1"
12+
version = "0.3.2"
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

0 commit comments

Comments
 (0)