Compare commits
4 Commits
v0.1.0-dev
...
v0.1.0-dev
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | 8aa8b02956 | |
Derrick Hammer | febc5604a7 | |
Derrick Hammer | 61a96fa453 | |
Derrick Hammer | 6046d46a04 |
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
@ -12,6 +12,8 @@ COPY . .
|
|||
|
||||
COPY entrypoint.sh /
|
||||
|
||||
RUN npm ci
|
||||
|
||||
# Command to run when the Docker container starts
|
||||
# It assumes the entrypoint is a script that handles the inputs and runs the desired commands
|
||||
ENTRYPOINT ["sh", "/entrypoint.sh"]
|
||||
|
|
|
@ -5,8 +5,6 @@ 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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "web3.news-publisher",
|
||||
"version": "0.1.0-develop.6",
|
||||
"version": "0.1.0-develop.7",
|
||||
"main": "src/index.ts",
|
||||
"description": "Publish your site to the web3.news aggregator",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in New Issue