Skip to content

Commit

Permalink
add GitHub Actions workflow for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoDorea committed Aug 22, 2024
1 parent 4f06d0b commit a14e33b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository content
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'pnpm'

- name: Install dependencies
run: pnpm install

- name: Build project
run: pnpm run build

- name: Deploy to GitHub Pages
run: pnpm run gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a14e33b

Please sign in to comment.