File tree 2 files changed +1
-33
lines changed
2 files changed +1
-33
lines changed Original file line number Diff line number Diff line change @@ -354,38 +354,6 @@ jobs:
354
354
TWINE_USERNAME : " __token__"
355
355
TWINE_PASSWORD : " ${{ secrets.PYPI_TOKEN }}"
356
356
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
-
389
357
distribute-py-wheels :
390
358
name : " Distribute Python Wheels"
391
359
needs : [ "distribute" ]
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ license = "MIT"
9
9
name = " jsonlogic-rs"
10
10
readme = " README.md"
11
11
repository = " https://github.com/bestowinc/json-logic-rs"
12
- version = " 0.3.1 "
12
+ version = " 0.3.2 "
13
13
14
14
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
15
15
You can’t perform that action at this time.
0 commit comments