Compare commits

...

4 Commits

Author SHA1 Message Date
semantic-release-bot 7a9951ef34 chore(release): 0.1.0-develop.6 [skip ci]
# [0.1.0-develop.6](https://git.lumeweb.com/LumeWeb/web3.news-publisher/compare/v0.1.0-develop.5...v0.1.0-develop.6) (2023-12-28)

### Bug Fixes

* use absolute path ([6af82b2](6af82b244a))
2023-12-28 06:16:09 +00:00
Derrick Hammer 522c7eb1d8
Merge remote-tracking branch 'origin/develop' into develop 2023-12-28 01:15:39 -05:00
Derrick Hammer 6af82b244a
fix: use absolute path 2023-12-28 01:15:36 -05:00
Derrick Hammer a74392fec5
chore: debug 2023-12-28 01:15:19 -05:00
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,10 @@
# [0.1.0-develop.6](https://git.lumeweb.com/LumeWeb/web3.news-publisher/compare/v0.1.0-develop.5...v0.1.0-develop.6) (2023-12-28)
### Bug Fixes
* use absolute path ([6af82b2](https://git.lumeweb.com/LumeWeb/web3.news-publisher/commit/6af82b244aef5ac1b712a4ab7bc719c34dd364ae))
# [0.1.0-develop.5](https://git.lumeweb.com/LumeWeb/web3.news-publisher/compare/v0.1.0-develop.4...v0.1.0-develop.5) (2023-12-28)

View File

@ -5,6 +5,8 @@ export INPUT_NODE=$1
export INPUT_SEED=$2
export INPUT_FOLDER=$3
echo "ARGS:" $@
# Providing a default value for INPUT_FOLDER if not set
if [ -z "$INPUT_FOLDER" ]
then
@ -15,4 +17,4 @@ echo "Publishing to node: $INPUT_NODE"
echo "Publishing folder: $INPUT_FOLDER"
# Example command (replace with your actual command)
bun ./src/index.ts
bun /app/src/index.ts

View File

@ -1,6 +1,6 @@
{
"name": "web3.news-publisher",
"version": "0.1.0-develop.5",
"version": "0.1.0-develop.6",
"main": "src/index.ts",
"description": "Publish your site to the web3.news aggregator",
"scripts": {