Skip to content

Commit

Permalink
ci: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
philippe-boyd-maxa committed Feb 8, 2024
1 parent 254fd00 commit 1791aad
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* @maxa-ai/developers
.github @maxa-ai/devops
18 changes: 12 additions & 6 deletions .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v4

- name: Setup NodeJS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "lts/Hydrogen"
node-version: "lts/*"
check-latest: true
cache: "yarn"

- name: Install dependencies
run: yarn

- name: Build
run: yarn build

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: "build/"

Expand All @@ -44,5 +50,5 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

0 comments on commit 1791aad

Please sign in to comment.