Compare commits
4 Commits
v0.1.0-dev
...
v0.1.0-dev
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | 7a9951ef34 | |
Derrick Hammer | 522c7eb1d8 | |
Derrick Hammer | 6af82b244a | |
Derrick Hammer | a74392fec5 |
|
@ -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)
|
# [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)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,8 @@ export INPUT_NODE=$1
|
||||||
export INPUT_SEED=$2
|
export INPUT_SEED=$2
|
||||||
export INPUT_FOLDER=$3
|
export INPUT_FOLDER=$3
|
||||||
|
|
||||||
|
echo "ARGS:" $@
|
||||||
|
|
||||||
# Providing a default value for INPUT_FOLDER if not set
|
# Providing a default value for INPUT_FOLDER if not set
|
||||||
if [ -z "$INPUT_FOLDER" ]
|
if [ -z "$INPUT_FOLDER" ]
|
||||||
then
|
then
|
||||||
|
@ -15,4 +17,4 @@ echo "Publishing to node: $INPUT_NODE"
|
||||||
echo "Publishing folder: $INPUT_FOLDER"
|
echo "Publishing folder: $INPUT_FOLDER"
|
||||||
|
|
||||||
# Example command (replace with your actual command)
|
# Example command (replace with your actual command)
|
||||||
bun ./src/index.ts
|
bun /app/src/index.ts
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "web3.news-publisher",
|
"name": "web3.news-publisher",
|
||||||
"version": "0.1.0-develop.5",
|
"version": "0.1.0-develop.6",
|
||||||
"main": "src/index.ts",
|
"main": "src/index.ts",
|
||||||
"description": "Publish your site to the web3.news aggregator",
|
"description": "Publish your site to the web3.news aggregator",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in New Issue