fix(deps): bump nuxt from 3.13.2 to 3.14.159 #548
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: github-pages | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [20] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node env | |
uses: actions/setup-node@v4.0.4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm i | |
- name: Build | |
run: npm run build | |
env: | |
NITRO_PRESET: github_pages | |
- name: Upload Output | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
# change to ./.output/public when really ready to deploy | |
path: ./.output/public | |
deploy: | |
needs: build | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github_pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |