From 553903f81886661009ac93dd3ef59e6ad148b78c Mon Sep 17 00:00:00 2001 From: Florian Richter Date: Mon, 10 Aug 2020 16:33:12 +0200 Subject: [PATCH] chore: Try use self instead of fixed version --- .github/workflows/update-monitor.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-monitor.yml b/.github/workflows/update-monitor.yml index 0df092a..e6ced19 100644 --- a/.github/workflows/update-monitor.yml +++ b/.github/workflows/update-monitor.yml @@ -20,13 +20,13 @@ jobs: SRC_FILES_COUNT=($(find src -type f | wc -l)) echo "::set-env name=code_size::$SRC_SIZE" echo "::set-env name=code_files_count::$SRC_FILES_COUNT" - - uses: floric/repo-monitor-action@v1.7.13 + - uses: ./ name: Update Report for Files Size with: key: code-size value: ${{ env.code_size }} token: ${{ secrets.GITHUB_TOKEN }} - - uses: floric/repo-monitor-action@v1.7.13 + - uses: ./ name: Update Report for Files Count with: key: files-count diff --git a/Dockerfile b/Dockerfile index c2b2158..c992cfe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,4 +4,4 @@ COPY . . RUN yarn RUN NODE_ENV=production yarn build RUN ls -la -ENTRYPOINT [ "node","dist/index.js" ] +ENTRYPOINT [ "node","/dist/index.js" ]