Skip to content

Commit

Permalink
Migrate to GitHub Actions for deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnImril committed Sep 8, 2024
1 parent 784a2b7 commit 9196cca
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 410 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Deploy Webpack Build

on:
push:
branches: ["main"]

workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"

- name: Install dependencies
run: npm ci

- name: Build project
run: npm run build

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "./build"

- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4
Loading

0 comments on commit 9196cca

Please sign in to comment.