Version 73. Added printCsv keyword to make it as easy to generate a C… #327
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
# Adapted from https://github.com/JamesIves/github-pages-deploy-action | |
name: Build and Deploy Scroll | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Install and Build | |
run: | | |
rm .gitignore | |
npm install . | |
./scroll.js build | |
cp blog/favicon.ico . | |
cd blog | |
npm install -g marked textile-js ya-bbcode | |
../scroll.js build | |
cd .. | |
cd tests/kitchenSink | |
../../scroll.js build | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: scroll-output # The branch the action should deploy to. | |
folder: . |