Skip to content
This repository was archived by the owner on Oct 11, 2025. It is now read-only.

Commit 2c05a32

Browse files
committed
quick save: Fri Dec 27 09:57:22 MSK 2024
1 parent de6b7d1 commit 2c05a32

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v4
1515
-
1616
name: Set up Node.js
17-
uses: actions/setup-node@v3
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: 23
2020
-
@@ -27,10 +27,14 @@ jobs:
2727
npm run build
2828
-
2929
name: 'Release: Upload'
30-
uses: softprops/action-gh-release@v1
30+
uses: softprops/action-gh-release@v2
3131
with:
3232
tag_name: latest-${{github.sha}}
3333
fail_on_unmatched_files: true
3434
files: |
3535
./dist/minified/index.js
3636
./template.env
37+
-
38+
run: npm publish --provenance
39+
env:
40+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
"rimraf": "^6.0.1",
2222
"typescript": "^5.4.5"
2323
},
24+
"publishConfig": {
25+
"access": "public",
26+
"provenance": true
27+
},
2428
"repository": {
2529
"type": "git",
2630
"url": "git+ssh://[email protected]/nikelborm/download-github-folder.git"

0 commit comments

Comments
 (0)