idimitrov.dev/.github/workflows/nextjs.yml

51 lines
1.1 KiB
YAML
Raw Normal View History

2023-11-19 09:43:04 +01:00
name: Deploy Next.js site to Pages
on:
push:
branches: ["nextjs"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
2023-11-19 09:51:37 +01:00
- uses: actions/checkout@v3
2023-11-19 09:43:04 +01:00
- name: Setup Node
uses: actions/setup-node@v3
with:
2023-11-19 09:46:31 +01:00
node-version: "20"
2023-11-19 09:55:13 +01:00
- name: Setup Bun
uses: oven-sh/setup-bun@v1
2023-11-19 09:43:04 +01:00
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install dependencies
2023-11-19 09:51:37 +01:00
run: bun install
2023-11-19 09:43:04 +01:00
- name: Build with Next.js
2023-11-19 09:51:37 +01:00
run: bun run build
2023-11-19 09:43:04 +01:00
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./out
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2