Skip to content

Commit

Permalink
Update and rename main.yml to deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
codebug8 authored Jan 29, 2024
1 parent 46c13c6 commit d15a326
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 55 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- master
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on

permissions:
contents: write

jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn

- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
run: yarn build

# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.CI_TOKEN }}
# Build output to publish to the `gh-pages` branch:
publish_dir: ./build
55 changes: 0 additions & 55 deletions .github/workflows/main.yml

This file was deleted.

0 comments on commit d15a326

Please sign in to comment.