Skip to content

Update README.md

Update README.md #77

Workflow file for this run

name: Deployment
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repository code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Packages
run: npm install
- name: test_lints_sass
run: npm run test:sass
- name: test_lints_js
run: npm run test:js
- name: Build the page
run: |
echo $CONFIG_JSON > src/config.json
npm update eos-icons
npm run build
cp build/index.html build/404.html
env:
CONFIG_JSON: ${{ secrets.CONFIG_JSON }}
- name: Deploy to gh-pages
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: gh-pages
FOLDER: build
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}