Compare commits

...

4 Commits

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

### Bug Fixes

* change app dir ([8654926](8654926e36))
* put entry point in root ([3c3be95](3c3be95cd8))
2023-12-28 06:05:39 +00:00
Derrick Hammer e41d3725c8
Merge remote-tracking branch 'origin/develop' into develop 2023-12-28 01:05:07 -05:00
Derrick Hammer 8654926e36
fix: change app dir 2023-12-28 01:04:58 -05:00
Derrick Hammer 3c3be95cd8
fix: put entry point in root 2023-12-28 01:04:31 -05:00
3 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,11 @@
# [0.1.0-develop.4](https://git.lumeweb.com/LumeWeb/web3.news-publisher/compare/v0.1.0-develop.3...v0.1.0-develop.4) (2023-12-28)
### Bug Fixes
* change app dir ([8654926](https://git.lumeweb.com/LumeWeb/web3.news-publisher/commit/8654926e366d377ef36b9a2c04df4996ef8dabf5))
* put entry point in root ([3c3be95](https://git.lumeweb.com/LumeWeb/web3.news-publisher/commit/3c3be95cd80fa7aa4939bcb3c461bb7f699d64f1))
# [0.1.0-develop.3](https://git.lumeweb.com/LumeWeb/web3.news-publisher/compare/v0.1.0-develop.2...v0.1.0-develop.3) (2023-12-28)
# [0.1.0-develop.2](https://git.lumeweb.com/LumeWeb/web3.news-publisher/compare/v0.1.0-develop.1...v0.1.0-develop.2) (2023-12-28)

View File

@ -5,11 +5,13 @@ FROM node:18.17.0
RUN curl -fsSL https://bun.sh/install | bash
# Set the working directory in the container
WORKDIR /usr/src/app
WORKDIR /app
# Copy your action's source files to the container
COPY . .
COPY entrypoint.sh /
# 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"]
ENTRYPOINT ["sh", "/entrypoint.sh"]

View File

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