Skip to content

Commit

Permalink
🔀Backmerge website action
Browse files Browse the repository at this point in the history
🔀Backmerge website action
  • Loading branch information
ssejrog authored Mar 1, 2025
2 parents b13aa11 + cd2fd61 commit 5c9ba37
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/deploy-to-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
cache: yarn
node-version: 18.x
cache: npm
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive
run: npm ci
- name: Build
run: yarn build
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit 5c9ba37

Please sign in to comment.