Skip to content

Commit

Permalink
Change pages.yml to latest stable action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
azat-ismagilov authored Dec 25, 2023
1 parent c7afcf3 commit 07cd61d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:


steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'npm'
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Build
run: PUBLIC_URL=${{ matrix.public_url }} VITE_DATA_FOLDER=${{ matrix.data_folder }} ./build.sh
- name: Upload
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.folder }}
path: ${{ matrix.public_url }}.zip
Expand All @@ -63,7 +63,7 @@ jobs:
needs: build
steps:
- name: Download artifacts
uses: actions/download-artifact@master
uses: actions/download-artifact@v4
with:
path: .
- name: Unzip all zip from multiple zips
Expand All @@ -78,7 +78,7 @@ jobs:
rm *.zip
ls
- name: Upload pages artifact
uses: actions/upload-pages-artifact@master
uses: actions/upload-pages-artifact@v3
with:
path: build-all
deploy:
Expand All @@ -92,4 +92,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit 07cd61d

Please sign in to comment.