This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
Merge pull request #233 from alexw3f/alexw3f-patch-1 #247
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
run: | | |
yarn --cwd www/ | |
yarn global add typescript | |
yarn global add browserify | |
yarn global add node-sass | |
yarn --cwd www/ build | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: www/dist # The folder the action should deploy. |