ipfs-add-folder 1.0.16 → 1.0.18

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.
@@ -0,0 +1,24 @@
1
+ name: Publish Package to npmjs
2
+ on:
3
+ push:
4
+ branches: [ master ]
5
+ paths-ignore:
6
+ - README.md
7
+ - LICENSE
8
+ - .github/**
9
+ jobs:
10
+ publish:
11
+ name: Publish
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ contents: read
15
+ id-token: write
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-node@v4
19
+ with:
20
+ node-version: '20.x'
21
+ registry-url: 'https://registry.npmjs.org'
22
+ - run: npm publish
23
+ env:
24
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # IPFS Add Folder [![Build Status](https://dev.azure.com/cladular/ipfs-add-folder/_apis/build/status/cladular.ipfs-add-folder?branchName=master)](https://dev.azure.com/cladular/ipfs-add-folder/_build/latest?definitionId=4&branchName=master)
1
+ # IPFS Add Folder [![Build Status](https://github.com/ItayPodhajcer/ipfs-add-folder/actions/workflows/publish.workflow.yml/badge.svg?branch=master)](https://github.com/ItayPodhajcer/ipfs-add-folder/actions)
2
2
 
3
3
  Recursively adds a folder to IPFS.
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ipfs-add-folder",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "description": "Recursively adds a folder to IPFS.",
5
5
  "main": "src/index.js",
6
6
  "bin": {