Skip to content
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.

Remove sitemap, update robots.txt to disallow everything #87

Remove sitemap, update robots.txt to disallow everything

Remove sitemap, update robots.txt to disallow everything #87

Workflow file for this run

name: Build and Deploy Eleventy Page
on:
push:
branches:
- master
repository_dispatch:
types: [publish]
jobs:
build-and-deploy:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies & build
env:
CTFL_SPACE: ${{ secrets.CTFL_SPACE }}
CTFL_ACCESSTOKEN: ${{ secrets.CTFL_ACCESSTOKEN }}
run: |
npm ci
npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./_site
github_token: ${{ secrets.GITHUB_TOKEN }}