Skip to content

Commit

Permalink
Create deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mathanraj0601 authored Aug 18, 2024
1 parent 540a80b commit 4899258
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: deploy-crypto-box

on:
push:
branches:
- develop


# List of all jobs
jobs:
# Job name Build
build:
# run on ubuntu machine machine
runs-on: ubuntu-latest

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

- name: Install Dependencies
- run: npm run install

- name: Run Build
- run: npm run build

- name: deploy to github pages
- uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist

0 comments on commit 4899258

Please sign in to comment.