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.
- package/.github/workflows/release.yml +4 -3
- package/README.md +1 -0
- package/package.json +1 -1
|
@@ -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: ${{
|
|
41
|
-
release_name: Release ${{
|
|
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
|

|
|
6
|
+

|
|
6
7
|
[](https://www.npmjs.com/package/cron-converter-u2q)
|
|
7
8
|
|
|
8
9
|
### Features
|