mirror of
https://github.com/tlsnotary/website.git
synced 2026-01-08 14:33:54 -05:00
37 lines
784 B
YAML
37 lines
784 B
YAML
name: Build Dev
|
|
|
|
on:
|
|
push:
|
|
branches: [dev]
|
|
pull_request:
|
|
branches: [dev]
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-and-deploy-dev:
|
|
permissions:
|
|
contents: write
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout 🛒
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Pages ⚙️
|
|
uses: actions/configure-pages@v4
|
|
with:
|
|
static_site_generator: next
|
|
|
|
- name: Build with Next.js 🏗️
|
|
run: npx next build
|
|
|
|
- name: Deploy to gh-pages-dev branch
|
|
uses: JamesIves/github-pages-deploy-action@v4.4.3
|
|
with:
|
|
branch: gh-pages-dev
|
|
folder: ./out
|