Skip to content

Commit

Permalink
Fixed action
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan3-14 authored Jan 11, 2024
1 parent 07a7b32 commit 0faff76
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 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:
deploy:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install dependencies
run: npm install

- name: Build site
run: npm run build

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.API_KEY }}
publish_dir: ./build
31 changes: 0 additions & 31 deletions .github/workspaces/deploy.yml

This file was deleted.

0 comments on commit 0faff76

Please sign in to comment.