Compare commits

...

4 Commits

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

### Bug Fixes

* run npm ci ([61a96fa](61a96fa453))
2023-12-28 06:20:37 +00:00
Derrick Hammer febc5604a7
Merge remote-tracking branch 'origin/develop' into develop 2023-12-28 01:20:08 -05:00
Derrick Hammer 61a96fa453
fix: run npm ci 2023-12-28 01:20:01 -05:00
Derrick Hammer 6046d46a04
chore: remove debug 2023-12-28 01:19:32 -05:00
4 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
# [0.1.0-develop.7](https://git.lumeweb.com/LumeWeb/web3.news-publisher/compare/v0.1.0-develop.6...v0.1.0-develop.7) (2023-12-28)
### Bug Fixes
* run npm ci ([61a96fa](https://git.lumeweb.com/LumeWeb/web3.news-publisher/commit/61a96fa453ea466999b4e2f7c02e0b6a6d72dc11))
# [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) # [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)

View File

@ -12,6 +12,8 @@ COPY . .
COPY entrypoint.sh / COPY entrypoint.sh /
RUN npm ci
# Command to run when the Docker container starts # Command to run when the Docker container starts
# It assumes the entrypoint is a script that handles the inputs and runs the desired commands # It assumes the entrypoint is a script that handles the inputs and runs the desired commands
ENTRYPOINT ["sh", "/entrypoint.sh"] ENTRYPOINT ["sh", "/entrypoint.sh"]

View File

@ -5,8 +5,6 @@ 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

View File

@ -1,6 +1,6 @@
{ {
"name": "web3.news-publisher", "name": "web3.news-publisher",
"version": "0.1.0-develop.6", "version": "0.1.0-develop.7",
"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": {