paperthin 0.7.0 → 0.7.1
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.
|
@@ -13,6 +13,8 @@ jobs:
|
|
|
13
13
|
runs-on: ubuntu-latest
|
|
14
14
|
steps:
|
|
15
15
|
- uses: actions/checkout@v4
|
|
16
|
+
with:
|
|
17
|
+
fetch-depth: 0 # fetch the annotated tag's message for the release notes
|
|
16
18
|
|
|
17
19
|
- uses: actions/setup-node@v4
|
|
18
20
|
with:
|
|
@@ -36,4 +38,7 @@ jobs:
|
|
|
36
38
|
- name: Create the GitHub Release
|
|
37
39
|
env:
|
|
38
40
|
GH_TOKEN: ${{ github.token }}
|
|
39
|
-
run:
|
|
41
|
+
run: |
|
|
42
|
+
git tag -l --format='%(contents)' "$GITHUB_REF_NAME" \
|
|
43
|
+
| sed '/-----BEGIN PGP SIGNATURE-----/,/-----END PGP SIGNATURE-----/d' > "$RUNNER_TEMP/notes.md"
|
|
44
|
+
gh release create "$GITHUB_REF_NAME" --title "PaperThin ${GITHUB_REF_NAME#v}" --notes-file "$RUNNER_TEMP/notes.md"
|
package/package.json
CHANGED