Skip to content

Commit

Permalink
add GitHub Actions DApp deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kshyun28 committed Aug 18, 2024
1 parent eb97104 commit 153c9dc
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/deploy-dapp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Deploy Dapp

on:
push:
branches:
- main

jobs:
build:
name: Build
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
working-directory: ./dapp

- name: Build project
run: npm run build
working-directory: ./dapp

- name: Upload production-ready build files
uses: actions/upload-artifact@v2
with:
name: production-files
path: ./dapp/dist

deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'

steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: production-files
path: ./dapp/dist

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dapp/dist

0 comments on commit 153c9dc

Please sign in to comment.