Skip to content

Update

Update #4

Workflow file for this run

name: publish-to-github-pages
on:
push:
branches:
- master
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/checkout@v4
- name: Setup Node.js βš™οΈ - Cache dependencies ⚑ - Install dependencies πŸ”§
uses: ./.github/workflows/setup-node
- name: Setup Pages βš™οΈ
uses: actions/configure-pages@v4
with:
static_site_generator: next
- name: Build with Next.js πŸ—οΈ
run: npm run build
run: npm run export

Check failure on line 34 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / publish-to-github-pages

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 34, Col: 9): 'run' is already defined
- name: Upload artifact πŸ“‘
uses: actions/upload-pages-artifact@v3
with:
path: ./out
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Publish to GitHub Pages πŸš€
id: deployment
uses: actions/deploy-pages@v4