From a68e004c12af210dd09760c8ad9290c48546ee72 Mon Sep 17 00:00:00 2001 From: Apostolos Tsakpinis Date: Sun, 26 May 2024 04:44:57 +0300 Subject: [PATCH] build: update github workflow --- .github/workflows/docker-publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index b56b869e..e06e5926 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -19,10 +19,10 @@ jobs: if: github.event_name == 'push' steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: '20' + node-version: 22.x - uses: aws-actions/configure-aws-credentials@v2 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} @@ -33,7 +33,7 @@ jobs: env: NODE_ENV: production run: | - npm i --force --production=false + pnpm i node ./scripts/build-styles.mjs node ./scripts/build-production.mjs node --no-warnings ./scripts/post-production.mjs