Skip to content

Commit

Permalink
actions fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulZhemanov committed Apr 30, 2024
1 parent 5a2b2a6 commit c602779
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 20.x
- run: npm ci
- run: npm run build --if-present

Expand All @@ -28,7 +28,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Stage to PROD
if: endsWith(github.ref, '/master')
run: |
Expand Down

0 comments on commit c602779

Please sign in to comment.