Skip to content

Commit

Permalink
Merge pull request #4 from mathanraj0601/feat/workflow
Browse files Browse the repository at this point in the history
Create deploy.yml
  • Loading branch information
mathanraj0601 authored Aug 18, 2024
2 parents 540a80b + 4899258 commit caffcd0
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 caffcd0

Please sign in to comment.