Skip to content

Commit 17dba3c

Browse files
committed
Update Docker workflows to replace push.mjs with push.js in execution commands
1 parent af3c2e3 commit 17dba3c

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/docker-image.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,4 @@ jobs:
2727
echo "npm version $(npm -v)" &&
2828
npm i -g zx@latest && echo "zx version $(zx -v)" &&
2929
curl -fsSL https://bun.sh/install | bash &&
30-
ls -lash /home/runner/.bun &&
31-
ls -lash /home/runner/.bun/bin &&
32-
ls -lash /home/runner/work &&
33-
/home/runner/.bun/bin/bun run ./push.mjs
30+
/home/runner/.bun/bin/bun run ./push.js

.github/workflows/prod.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
- name: Deploy to Docker Hub Production
1515
run:
1616
ls -lash &&
17-
docker run --rm -v ./:/app nozich/bunode:latest zsh -c "ls -lash && bun run ./push.mjs"
17+
docker run --rm -v ./:/app nozich/bunode:latest zsh -c "ls -lash && bun run ./push.js"

0 commit comments

Comments
 (0)