cron-converter-u2q 0.1.14-alpha → 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,7 @@ on:
6
6
  - completed
7
7
  jobs:
8
8
  release:
9
+ permissions: write-all
9
10
  runs-on: ubuntu-latest
10
11
  steps:
11
12
  - uses: actions/checkout@v3
@@ -37,8 +38,8 @@ jobs:
37
38
  env:
38
39
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
40
  with:
40
- tag_name: ${{ github.ref }}
41
- release_name: Release ${{ github.ref }}
41
+ tag_name: ${{ steps.pkgver.outputs.version }}
42
+ release_name: Release ${{ steps.pkgver.outputs.version }}
42
43
  draft: false
43
44
  prerelease: false
44
45
 
@@ -49,6 +50,6 @@ jobs:
49
50
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50
51
  with:
51
52
  upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`.
52
- asset_path: ./your-package-name-${{ steps.pkgver.outputs.version }}.tgz
53
+ # asset_path: ./your-package-name-${{ steps.pkgver.outputs.version }}.tgz
53
54
  asset_name: your-package-name-${{ steps.pkgver.outputs.version }}.tgz
54
55
  asset_content_type: application/gzip
package/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  Easily convert cron expressions between Unix and Quartz formats with the `cron-converter-u2q` package
4
4
 
5
5
  ![example event parameter](https://github.com/rahu619/cron-converter-u2q/actions/workflows/integration.yml/badge.svg?event=push)
6
+ ![example event parameter](https://github.com/rahu619/cron-converter-u2q/actions/workflows/release.yml/badge.svg?event=push)
6
7
  [![NPM version](https://badge.fury.io/js/cron-converter-u2q.svg)](https://www.npmjs.com/package/cron-converter-u2q)
7
8
 
8
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cron-converter-u2q",
3
- "version": "0.1.14-alpha",
3
+ "version": "0.1.14",
4
4
  "description": "Converts cron expressions between unix and quartz formats",
5
5
  "main": "lib/index.js",
6
6
  "types": "types/index.d.ts",