Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zehir/update-package-node-red-flow-library-action
Update or add a Node-Red package on the Node-Red flow library (flows.nodered.org).
https://github.com/zehir/update-package-node-red-flow-library-action
Last synced: about 2 months ago
JSON representation
Update or add a Node-Red package on the Node-Red flow library (flows.nodered.org).
- Host: GitHub
- URL: https://github.com/zehir/update-package-node-red-flow-library-action
- Owner: Zehir
- License: mit
- Created: 2021-10-13T22:36:08.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-04T22:07:19.000Z (11 months ago)
- Last Synced: 2024-10-31T10:47:54.699Z (2 months ago)
- Language: JavaScript
- Size: 1.53 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Update Node-Red flow-library
Update or add a Node-Red package on the Node-Red flow library (flows.nodered.org).
## Inputs
### `package-name`
**Required** The name of the package. Default `""`.
## Outputs
### `result`
The result of update
## Example usage
```yaml
name: NPM Publishon:
push:
branches:
- mainjobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10
- run: npm install
- run: npm test
- id: publish
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
- if: steps.publish.outputs.type != 'none'
name: Update Node-Red flow-library
uses: Zehir/[email protected]
continue-on-error: true
with:
package-name: 'node-red-contrib-deconz'```