Skip to content

Commit

Permalink
Merge pull request #5 from icflorescu/next
Browse files Browse the repository at this point in the history
Update github workflow action versions
  • Loading branch information
icflorescu committed Nov 6, 2023
2 parents 3ae1fed + 816cf00 commit 97e7179
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18.16.1'
node-version: '20'
cache: yarn
- name: Restore cache
uses: actions/cache@v3
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Build
run: GITHUB_PAGES=true yarn build
- name: Upload pages artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v2
with:
path: ./docs/out
- name: Upload package artifact
Expand All @@ -65,7 +65,7 @@ jobs:
- uses: actions/download-artifact@v3
with:
name: package
- uses: JS-DevTools/npm-publish@v1
- uses: JS-DevTools/npm-publish@v2
with:
token: ${{ secrets.NPM_TOKEN }}

Expand All @@ -79,4 +79,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v2

0 comments on commit 97e7179

Please sign in to comment.