From db9049c457165614a295d925110a69b363d60208 Mon Sep 17 00:00:00 2001 From: xRain Date: Tue, 22 Aug 2023 12:02:32 +0800 Subject: [PATCH] test --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index c3e727c..1cc21fe 100644 --- a/action.yml +++ b/action.yml @@ -6,14 +6,14 @@ runs: steps: - uses: docker://node:18 with: - entrypoint: ["/bin/bash","-c"] + entrypoint: "/bin/bash -c" args: | npm install npm run build -- --outputPath=dist - uses: docker://docker:git with: - entrypoint: ["/bin/bash","-c"] + entrypoint: "/bin/bash -c" args: | echo "FROM nginx:alpine" > Dockerfile echo "COPY dist /usr/share/nginx/html" >> Dockerfile