Compare commits
4 Commits
v0.1.0-dev
...
v0.1.0-dev
Author | SHA1 | Date |
---|---|---|
semantic-release-bot | 71ed6ee058 | |
Derrick Hammer | e41d3725c8 | |
Derrick Hammer | 8654926e36 | |
Derrick Hammer | 3c3be95cd8 |
|
@ -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)
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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": {
|
||||
|
|
Loading…
Reference in New Issue