Skip to content

Merge pull request #12 from pho3nixf1re/attempt-builds-again #6

Merge pull request #12 from pho3nixf1re/attempt-builds-again

Merge pull request #12 from pho3nixf1re/attempt-builds-again #6

name: Build and deploy release to GitHub Pages
on:
push:
branches:
- main
pull_request:
concurrency:
group: 'pages'
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Restore cache
uses: actions/cache@v3
with:
path: |
.next/cache
# Generate a new cache whenever packages or source files change.
key: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json')}}-${{
hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-
- name: Install dependencies
run: npm ci
- name: Lint and test
run: npm run lint
- name: Build with Next.js
run: npm run build
- name: Fix permissions for Github Pages
run: |
chmod -c -R +rX "out/" | while read line; do
echo "::warning title=Invalid file permissions automatically fixed::$line"
done
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./out
deploy:
if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/v')
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3