Skip to content

Minor description change #102

Minor description change

Minor description change #102

Workflow file for this run

name: Deploy site
on:
push:
branches:
- main
jobs:
deploy-site:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '14.19.1'
- name: Setup NPM
working-directory: .
run: |
sudo npm install -g [email protected]
- name: NPM Install
working-directory: .
run: |
npm install
- name: Run Eleventy
working-directory: .
run: |
./build.sh
- name: Add .nojekyll
working-directory: .
run: |
touch _site/.nojekyll
- name: Add CNAME
working-directory: .
run: |
echo 'ceramic-engine.com' > _site/CNAME
- name: Deploy to Github Pages
uses: ceramic-engine/[email protected]
env:
PUBLISH_DIR: _site
PUBLISH_BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}