Skip to content

Commit

Permalink
update github workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sitek94 committed Mar 7, 2024
1 parent 51e8bd9 commit e2965e8
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 @@ -12,10 +12,10 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4

- name: Install dependencies
uses: bahmutov/npm-install@v1
Expand All @@ -24,7 +24,7 @@ jobs:
run: npm run build

- name: Upload production-ready build files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: production-files
path: ./dist
Expand All @@ -37,7 +37,7 @@ jobs:

steps:
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: production-files
path: ./dist
Expand Down

0 comments on commit e2965e8

Please sign in to comment.