Skip to content

Commit

Permalink
fix gh workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
akisblack authored May 7, 2024
1 parent 91880af commit 56075d6
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 34 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/docker.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]

- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm install -g pnpm
pnpm i
pnpm build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.
commit-message: Deployed to GitHub Pages 🚀
clean: true
single-commit: true

0 comments on commit 56075d6

Please sign in to comment.